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

:root {
    --primary: #2d5a4a;
    --primary-light: #3d7a64;
    --secondary: #e8b94f;
    --dark: #1a2f28;
    --light: #f8f6f2;
    --white: #ffffff;
    --gray: #6b7b75;
    --gray-light: #d4dbd8;
    --accent: #c45d3e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Navigation */
.nav-wrapper {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Split Screen Sections */
.split-section {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
}

.split-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,90,74,0.3) 0%, transparent 60%);
}

.hero-content {
    max-width: 520px;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 35px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45,90,74,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 35px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Stats Section */
.stats-section {
    background: var(--primary);
    padding: 80px 0;
}

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

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-tag {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-desc {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
}

.service-btn {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.service-btn:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

/* About Split */
.about-split {
    display: flex;
    min-height: 80vh;
}

.about-image-side {
    flex: 1;
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-float {
    position: absolute;
    bottom: 40px;
    right: -40px;
    width: 250px;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 8px solid var(--white);
}

.about-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--light);
}

.about-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--dark);
}

.testimonials-section .section-tag,
.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .section-subtitle {
    color: var(--gray-light);
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.testimonial-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.testimonial-info span {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.process-step {
    flex: 1 1 25%;
    min-width: 250px;
    padding: 50px 40px;
    position: relative;
    border-right: 1px solid var(--gray-light);
}

.process-step:last-child {
    border-right: none;
}

.process-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1;
}

.process-title {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.process-desc {
    color: var(--gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-btn {
    background: var(--secondary);
    color: var(--dark);
    padding: 18px 45px;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Contact Form Section */
.contact-section {
    padding: 100px 0;
    background: var(--light);
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 350px;
}

.contact-info-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-text {
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item-content p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45,90,74,0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col:first-child {
    flex: 1.5;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-desc {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--dark);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-light);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-light);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 25px;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    color: var(--dark);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

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

.cookie-accept {
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: var(--primary-light);
}

.cookie-reject {
    background: transparent;
    color: var(--gray);
    padding: 12px 30px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-reject:hover {
    border-color: var(--gray);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary);
    color: var(--dark);
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 999;
    transition: all 0.3s ease;
    display: none;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.sticky-cta.show {
    display: block;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 3.5rem;
    color: var(--white);
}

.thanks-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-text {
    color: var(--gray);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.thanks-service {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.thanks-service h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Policy Pages */
.policy-section {
    padding: 140px 0 80px;
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.policy-date {
    color: var(--gray);
    margin-bottom: 40px;
}

.policy-content h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 40px 0 20px;
}

.policy-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.9;
}

.policy-content ul {
    margin: 20px 0 20px 30px;
}

.policy-content ul li {
    color: var(--gray);
    margin-bottom: 10px;
    list-style: disc;
}

/* About Page Specific */
.about-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    text-align: center;
}

.about-hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.about-hero-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-section {
    padding: 100px 0;
    background: var(--light);
}

.team-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-card {
    flex: 0 1 280px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.team-image {
    height: 280px;
    background-size: cover;
    background-position: center;
}

.team-info {
    padding: 30px;
}

.team-name {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary);
    font-weight: 500;
}

/* Services Page */
.services-hero {
    padding: 160px 0 100px;
    background: var(--dark);
    text-align: center;
}

.services-hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.services-hero-text {
    color: var(--gray-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-full {
    padding: 100px 0;
}

.service-full-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-full-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-full-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
}

.service-full-content {
    flex: 1;
}

.service-full-price {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.service-full-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.service-full-desc {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Contact Page */
.contact-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    text-align: center;
}

.contact-hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-hero-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
}

.contact-page-wrapper {
    padding: 100px 0;
}

.contact-grid {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-map {
    flex: 1.5;
    min-width: 350px;
    height: 450px;
    background: var(--gray-light);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .about-content-side {
        padding: 50px 30px;
    }

    .about-image-float {
        display: none;
    }

    .process-step {
        border-right: none;
        border-bottom: 1px solid var(--gray-light);
    }

    .service-full-card,
    .service-full-card:nth-child(even) {
        flex-direction: column;
    }

    .service-full-image {
        height: 300px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

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

    .contact-form {
        padding: 30px;
    }

    .footer-wrapper {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 15px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .btn-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonial-card {
        padding: 30px;
    }
}
