:root {
    --sage: #9CAF88;
    --lavender: #B8A4C9;
    --terracotta: #D4A59A;
    --cream: #F5F1E8;
    --sand: #E8DCC4;
    --forest: #5F7161;
    --plum: #7D6E83;
    --warm-white: #FFFEF9;
    --charcoal: #3D3D3D;
    
    --font-body: 'Nunito', 'Quicksand', sans-serif;
    --font-heading: 'Nunito', 'Quicksand', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background: var(--warm-white);
    color: var(--charcoal);
    line-height: 1.8;
    font-size: 17px;
    position: relative;
    max-width: 100vw;
}

html {
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--sage) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--lavender) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, var(--terracotta) 0%, transparent 50%);
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: url('data:image/svg+xml,<svg width="800" height="800" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%239CAF88" opacity="0.15"/></pattern></defs><rect width="800" height="800" fill="url(%23dots)"/></svg>');
    z-index: -1;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(5deg); }
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 254, 249, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(156, 175, 136, 0.2);
}

.header.hidden {
    transform: translateY(-100%);
}

.navbar {
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: var(--plum);
    display: block;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: clamp(9px, 1.8vw, 13px);
    color: var(--forest);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 0;
    }
    
    .nav-brand .logo img {
        width: 50px !important;
        height: 50px !important;
    }
    
    .nav-brand .logo {
        gap: 12px !important;
    }
}

.nav-list {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--charcoal);
    font-size: clamp(15px, 2.2vw, 17px);
    font-weight: 600;
    position: relative;
    transition: all 0.3s;
    letter-spacing: 0.3px;
    padding: 8px 16px;
    border-radius: 12px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--forest);
    background: rgba(156, 175, 136, 0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

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

.bar {
    width: 26px;
    height: 2px;
    background: var(--charcoal);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: url('data:image/svg+xml,<svg width="600" height="600" xmlns="http://www.w3.org/2000/svg"><path d="M300,50 Q450,150 500,300 T300,550 Q150,450 100,300 T300,50" fill="none" stroke="%23B8A4C9" stroke-width="2" opacity="0.1"/><circle cx="300" cy="300" r="200" fill="none" stroke="%23D4A59A" stroke-width="2" opacity="0.08"/><path d="M200,200 L400,200 L400,400 L200,400 Z" fill="none" stroke="%239CAF88" stroke-width="2" opacity="0.06" transform="rotate(45 300 300)"/></svg>');
    z-index: -1;
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: url('data:image/svg+xml,<svg width="500" height="500" xmlns="http://www.w3.org/2000/svg"><circle cx="250" cy="250" r="150" fill="none" stroke="%239CAF88" stroke-width="3" opacity="0.1"/><circle cx="250" cy="250" r="100" fill="none" stroke="%23B8A4C9" stroke-width="2" opacity="0.12"/><circle cx="250" cy="250" r="50" fill="none" stroke="%23D4A59A" stroke-width="2" opacity="0.08"/><path d="M250,100 L250,400 M100,250 L400,250" stroke="%239CAF88" stroke-width="1" opacity="0.06"/></svg>');
    z-index: -1;
    pointer-events: none;
    animation: float 30s ease-in-out infinite;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 500;
    color: var(--plum);
}

.hero-text .highlight {
    color: var(--sage);
    font-style: italic;
}

.hero-text p {
    font-size: 19px;
    margin-bottom: 40px;
    max-width: 540px;
    color: var(--forest);
    line-height: 1.9;
}

.hero-text p strong {
    color: var(--plum);
    font-weight: 600;
    background: linear-gradient(120deg, var(--cream) 0%, var(--cream) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 85%;
    padding: 0 4px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--sage);
    color: var(--warm-white);
    box-shadow: 0 4px 16px rgba(156, 175, 136, 0.3);
}

.btn-primary:hover {
    background: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(156, 175, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--sage);
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(61, 61, 61, 0.15);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-image:hover img {
    transform: scale(1.02) rotate(1deg);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--terracotta);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

/* Services */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg"><path d="M150,50 L200,130 L280,130 L220,180 L250,260 L150,210 L50,260 L80,180 L20,130 L100,130 Z" fill="none" stroke="%23B8A4C9" stroke-width="2" opacity="0.08"/></svg>');
    z-index: 0;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
    position: relative;
}

.section-header::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--lavender));
    display: block;
    margin: 24px auto 0;
    border-radius: 2px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--plum);
}

.section-header p {
    font-size: 19px;
    color: var(--forest);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--warm-white);
    padding: 44px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(156, 175, 136, 0.15);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sage), var(--lavender), var(--terracotta));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 32px 64px rgba(61, 61, 61, 0.15);
    border-color: var(--sage);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--sage), var(--forest));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--warm-white);
    font-size: 32px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: inherit;
    opacity: 0.3;
    filter: blur(12px);
    z-index: -1;
    transition: opacity 0.5s;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
}

.service-card:hover .service-icon::after {
    opacity: 0.6;
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--lavender), var(--plum));
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--terracotta), #B8887A);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, var(--sage), var(--forest));
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, var(--lavender), var(--plum));
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, var(--terracotta), #B8887A);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--plum);
}

.service-card p {
    color: var(--forest);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* About */
.about {
    padding: 120px 0;
    background: var(--warm-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 28px;
    font-weight: 500;
    color: var(--plum);
}

.about-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--forest);
    line-height: 1.8;
}

.about-text p strong,
.about-text p em {
    color: var(--plum);
    font-weight: 600;
    font-style: normal;
    position: relative;
    padding: 2px 8px;
    background: linear-gradient(120deg, var(--cream) 0%, var(--sand) 100%);
    border-radius: 4px;
}

.about-features {
    list-style: none;
    margin: 36px 0;
}

.about-features li {
    padding: 16px 0;
    margin-bottom: 12px;
    color: var(--charcoal);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-features li::before {
    content: '✓';
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--sage), var(--forest));
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(156, 175, 136, 0.35);
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.about-features li {
    background: var(--warm-white);
    padding: 20px 24px;
    border-radius: 16px;
    transition: all 0.3s;
    border: 1px solid rgba(156, 175, 136, 0.15);
    box-shadow: 0 2px 8px rgba(61, 61, 61, 0.04);
}

.about-features li:hover {
    background: var(--cream);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(61, 61, 61, 0.08);
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(61, 61, 61, 0.15);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image:hover img {
    transform: scale(1.02) rotate(-1deg);
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--warm-white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(156, 175, 136, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-family: var(--font-heading);
    color: var(--lavender);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 56px rgba(61, 61, 61, 0.15);
    border-color: var(--lavender);
}

.testimonial-text {
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.8;
    color: var(--forest);
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--lavender), var(--plum));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-white);
    font-weight: 600;
    font-size: 20px;
}

.author-info h4 {
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--sage);
}

/* CTA */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--lavender), var(--plum));
    color: var(--warm-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 500;
}

.cta p {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background: var(--warm-white);
    color: var(--plum);
}

.cta .btn:hover {
    background: var(--sage);
    color: var(--warm-white);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: rgba(255, 254, 249, 0.8);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--warm-white);
    margin-bottom: 24px;
    font-weight: 500;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 24px;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 254, 249, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--sage);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 254, 249, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--sage);
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255, 254, 249, 0.2);
    border-radius: 50px;
    background: rgba(255, 254, 249, 0.05);
    color: var(--warm-white);
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: rgba(255, 254, 249, 0.5);
}

.newsletter-form button {
    padding: 14px 28px;
}

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

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

.footer-links a {
    color: rgba(255, 254, 249, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom p {
    font-size: 14px;
}

.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: var(--sage);
    border: none;
    border-radius: 50%;
    color: var(--warm-white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(156, 175, 136, 0.4);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--forest);
    transform: translateY(-4px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-top: 1px solid rgba(156, 175, 136, 0.2);
    box-shadow: 0 -4px 24px rgba(61, 61, 61, 0.1);
    padding: 28px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    color: var(--forest);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .hero,
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid .service-card {
        grid-column: auto !important;
        grid-row: auto !important;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid .testimonial-card {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 90px;
    }
    
    .container {
        padding: 0 18px;
        max-width: 100%;
    }
    
    .hero::before,
    .hero::after,
    .services::before,
    body::after {
        display: none;
    }
    
    .nav-brand .logo img {
        width: 50px !important;
        height: 50px !important;
    }
    
    .footer {
        padding: 50px 0 24px !important;
    }
    
    .footer > .container > div:first-child {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        background: var(--warm-white);
        width: 100%;
        padding: 40px 0;
        transition: left 0.3s;
        box-shadow: 0 8px 24px rgba(61, 61, 61, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero {
        padding: 130px 0 60px;
        min-height: auto;
    }
    
    .services,
    .about,
    .testimonials,
    .cta {
        padding: 60px 0;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 28px 22px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .service-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-features li {
        font-size: 15px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}


/* Enhanced Styling */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--plum);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--forest);
    line-height: 1.7;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--sage) !important;
    box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.15) !important;
}

.btn {
    box-shadow: 0 4px 16px rgba(156, 175, 136, 0.25);
}

.btn:hover {
    box-shadow: 0 8px 28px rgba(156, 175, 136, 0.35);
}

@media (max-width: 768px) {
    .testimonials-page,
    .contact-page,
    .about-page,
    .services-page {
        padding: 8rem 0 4rem !important;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .services,
    .about,
    .testimonials {
        padding: 60px 0 !important;
    }
    
    .section-header {
        margin-bottom: 2.5rem !important;
    }
    
    .about-content {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    .hero {
        padding: 130px 0 50px;
    }
    
    .services,
    .about,
    .testimonials {
        padding: 50px 0 !important;
    }
    
    .service-card,
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .about-features li::before {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .about-features li {
        padding: 16px 18px;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .section-header::after {
        width: 60px;
        height: 3px;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
    }
    
    .section-header p {
        font-size: 1rem !important;
    }
}

/* Service Detail Sticky Images */
.service-sticky-image {
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(61, 61, 61, 0.15);
    overflow: hidden;
}

.service-sticky-image img {
    width: 100%;
    display: block;
}

@media (min-width: 769px) {
    .service-sticky-image {
        position: sticky;
        top: 100px;
        align-self: start;
    }
}

@media (max-width: 768px) {
    .service-sticky-image img {
        height: 280px;
        object-fit: cover;
    }
}
