* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d5a3d;
    --secondary-green: #4a7c59;
    --light-green: #7fa88e;
    --accent-gold: #c9a961;
    --dark-text: #1a1a1a;
    --light-text: #ffffff;
    --gray-text: #666666;
    --light-bg: #f8f9f7;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background: var(--light-text);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--light-bg);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-green);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--gray-text);
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-green);
    color: var(--light-text);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.25);
}

.cta-primary-large {
    display: inline-block;
    background: var(--primary-green);
    color: var(--light-text);
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-primary-large:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 61, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-green);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-green);
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-secondary:hover {
    background: var(--primary-green);
    color: var(--light-text);
}

.cta-inline {
    display: inline-block;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-green);
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: var(--secondary-green);
    border-bottom-color: var(--secondary-green);
}

.split-reverse,
.split-default {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.split-reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary-green);
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-indicators {
    background: var(--primary-green);
    color: var(--light-text);
    padding: 70px 20px;
}

.indicators-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.indicator {
    text-align: center;
}

.indicator-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.indicator-label {
    font-size: 16px;
    opacity: 0.95;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 17px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
}

.services-preview {
    padding: 90px 20px;
    background: var(--light-bg);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-green);
}

.services-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    background: var(--light-text);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: var(--primary-green);
}

.service-card p {
    margin: 0 25px 20px;
    color: var(--gray-text);
    line-height: 1.7;
}

.service-card .price {
    margin: 0 25px 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
}

.service-card .card-link {
    display: block;
    margin: 0 25px 25px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card .card-link:hover {
    color: var(--secondary-green);
}

.cta-center {
    text-align: center;
}

.testimonial-split {
    display: flex;
    align-items: center;
    background: var(--light-bg);
}

.testimonial-content {
    flex: 1;
    padding: 80px 60px;
}

.quote-mark {
    font-size: 80px;
    color: var(--accent-gold);
    line-height: 0.8;
    margin-bottom: 20px;
}

blockquote p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--dark-text);
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-green);
}

.testimonial-author span {
    color: var(--gray-text);
    font-size: 15px;
}

.testimonial-image {
    flex: 1;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-section {
    padding: 90px 20px;
}

.approach-grid {
    display: flex;
    gap: 50px;
}

.approach-step {
    flex: 1;
}

.step-number {
    font-size: 60px;
    font-weight: 700;
    color: var(--light-green);
    margin-bottom: 20px;
}

.approach-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
}

.insight-section {
    background: var(--light-text);
}

.form-section {
    padding: 90px 20px;
    background: var(--light-bg);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.form-intro p {
    font-size: 18px;
    color: var(--gray-text);
}

.main-form,
.contact-form {
    background: var(--light-text);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.btn-submit {
    width: 100%;
    background: var(--primary-green);
    color: var(--light-text);
    padding: 18px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.25);
}

.final-cta-split {
    display: flex;
    align-items: center;
    background: var(--primary-green);
    color: var(--light-text);
}

.cta-content {
    flex: 1;
    padding: 80px 60px;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--light-text);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-visual {
    flex: 1;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-footer {
    background: var(--dark-text);
    color: var(--light-text);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-column p {
    line-height: 1.8;
    opacity: 0.85;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light-text);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background: var(--accent-gold);
    color: var(--dark-text);
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: var(--light-text);
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-gold);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--primary-green);
    color: var(--light-text);
}

.btn-accept:hover {
    background: var(--secondary-green);
}

.btn-reject {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background: var(--light-bg);
    padding: 100px 20px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.page-hero p {
    font-size: 20px;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 60px 20px 90px;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail.split-layout.reverse {
    flex-direction: row-reverse;
}

.service-detail .service-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-detail .service-image img {
    width: 100%;
    height: auto;
}

.service-detail .service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.service-lead {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-green);
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--gray-text);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    margin: 30px 0;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-weight: 600;
    color: var(--dark-text);
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
}

.services-cta {
    background: var(--primary-green);
    color: var(--light-text);
    padding: 80px 20px;
    text-align: center;
}

.services-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.about-story {
    padding: 80px 20px;
}

.story-content,
.story-image {
    flex: 1;
}

.story-content {
    padding-right: 60px;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-green);
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.story-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.story-image img {
    width: 100%;
    height: auto;
}

.values-section {
    background: var(--light-bg);
    padding: 90px 20px;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    background: var(--light-text);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.value-card p {
    line-height: 1.7;
    color: var(--gray-text);
}

.team-section {
    padding: 90px 20px;
}

.team-grid {
    display: flex;
    gap: 40px;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-green);
}

.member-role {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-member p {
    color: var(--gray-text);
    line-height: 1.7;
}

.approach-philosophy {
    padding: 80px 20px;
    background: var(--light-bg);
}

.philosophy-content,
.philosophy-image {
    flex: 1;
}

.philosophy-content {
    padding-left: 60px;
}

.philosophy-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-green);
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.philosophy-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.philosophy-image img {
    width: 100%;
    height: auto;
}

.impact-numbers {
    padding: 90px 20px;
}

.impact-grid {
    display: flex;
    gap: 50px;
}

.impact-stat {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.impact-stat p {
    color: var(--gray-text);
    line-height: 1.6;
}

.certifications {
    background: var(--light-bg);
    padding: 90px 20px;
}

.certifications-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--gray-text);
}

.cert-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cert-item {
    background: var(--light-text);
    padding: 25px 40px;
    border-radius: 6px;
    font-weight: 600;
    color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-cta {
    padding: 90px 20px;
    text-align: center;
}

.about-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.about-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--gray-text);
}

.contact-split {
    display: flex;
    gap: 60px;
    padding: 60px 20px 90px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-side,
.contact-form-side {
    flex: 1;
}

.contact-info-side h2,
.contact-form-side h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-green);
}

.contact-form-side p {
    margin-bottom: 30px;
    color: var(--gray-text);
    font-size: 17px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-green);
    font-weight: 600;
}

.info-block p {
    color: var(--gray-text);
    line-height: 1.8;
}

.info-block a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

.map-section {
    background: var(--light-bg);
    padding: 90px 20px;
}

.map-placeholder {
    background: var(--light-text);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--primary-green);
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.thanks-lead {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--gray-text);
}

.thanks-content {
    margin-bottom: 40px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.thanks-info {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-green);
    text-align: center;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 20px;
    color: var(--gray-text);
    line-height: 1.7;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 20px;
}

.legal-content {
    padding: 60px 20px 90px;
}

.legal-updated {
    font-style: italic;
    color: var(--gray-text);
    margin-bottom: 40px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-green);
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray-text);
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    color: var(--gray-text);
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-green);
}

.cookie-table td {
    color: var(--gray-text);
}

@media (max-width: 1024px) {
    .hero-split,
    .split-reverse,
    .split-default,
    .testimonial-split,
    .final-cta-split {
        flex-direction: column;
    }

    .split-content,
    .hero-left,
    .testimonial-content,
    .cta-content {
        padding: 60px 40px;
    }

    .services-grid,
    .approach-grid,
    .values-grid,
    .team-grid,
    .impact-grid {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

    .service-detail.split-layout,
    .service-detail.split-layout.reverse {
        flex-direction: column;
    }

    .story-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .philosophy-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-column {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--light-text);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .split-content h2,
    .section-title {
        font-size: 32px;
    }

    .hero-left,
    .split-content,
    .testimonial-content,
    .cta-content {
        padding: 40px 25px;
    }

    blockquote p {
        font-size: 18px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .main-form,
    .contact-form {
        padding: 30px 25px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .footer-column {
        flex: 1 1 100%;
    }
}
