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

:root {
    --color-primary: #2c5545;
    --color-secondary: #a67c52;
    --color-accent: #d4a574;
    --color-dark: #1a1a1a;
    --color-light: #f8f6f3;
    --color-white: #ffffff;
    --color-gray: #6b6b6b;
    --color-gray-light: #e8e5e1;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background: var(--color-white);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

.container-narrow {
    max-width: 900px;
}

.container-wide {
    max-width: 1400px;
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

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

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

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(166,124,82,0.05) 100%);
    transform: rotate(-12deg);
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

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

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

.hero-text {
    font-size: 1.15rem;
    color: var(--color-gray);
    margin-bottom: 35px;
    max-width: 520px;
}

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

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.hero-image-overlay {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--color-white);
    padding: 20px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.hero-stat {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: #234436;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44,85,69,0.25);
}

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

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

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

.btn-accent:hover {
    background: #8f6942;
    transform: translateY(-3px);
}

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

.btn-light:hover {
    background: var(--color-light);
}

/* Sections */
section {
    padding: 90px 0;
}

.section-alt {
    background: var(--color-light);
}

.section-dark {
    background: var(--color-dark);
    color: var(--color-white);
}

.section-dark .section-subtitle {
    color: var(--color-accent);
}

.section-dark .section-title {
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-left {
    text-align: left;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
}

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

.section-text {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 650px;
    margin: 20px auto 0;
}

/* Services Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

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

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
}

.service-content {
    padding: 28px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.service-price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.service-price-unit {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-link:hover {
    gap: 12px;
    color: var(--color-primary);
}

/* Features */
.features-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
}

.features-content {
    flex: 1;
}

.features-image {
    flex: 1;
}

.features-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.features-list {
    margin-top: 35px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--color-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-primary);
}

.feature-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--color-dark);
}

.feature-text {
    font-size: 0.95rem;
    color: var(--color-gray);
}

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

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-accent);
    margin-top: 10px;
}

/* Process */
.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1 1 calc(25% - 23px);
    min-width: 240px;
    position: relative;
    padding: 35px 25px;
    background: var(--color-white);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 20px;
}

.process-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.process-text {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* Testimonials */
.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
    background: var(--color-white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 25px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 55px;
    height: 55px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-dark);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e3d30 100%);
    padding: 90px 0;
    text-align: center;
}

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

.cta-text {
    font-size: 1.15rem;
    color: var(--color-accent);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* About Page */
.about-hero {
    padding: 160px 0 80px;
    background: var(--color-light);
}

.about-hero-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-hero-content {
    flex: 1;
}

.about-hero-image {
    flex: 1;
}

.about-hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

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

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 35px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary);
}

.value-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-text {
    font-size: 0.95rem;
    color: var(--color-gray);
}

/* Team */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

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

.team-photo {
    width: 180px;
    height: 180px;
    background: var(--color-light);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-gray);
}

.team-name {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--color-secondary);
}

/* Contact Page */
.contact-hero {
    padding: 160px 0 80px;
    background: var(--color-light);
}

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

.contact-info {
    flex: 1;
}

.contact-form-wrap {
    flex: 1.2;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
}

.contact-label {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-dark);
}

.contact-hours {
    margin-top: 40px;
    padding: 30px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.contact-hours-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.contact-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.contact-hours-item:last-child {
    border-bottom: none;
}

.contact-hours-day {
    font-weight: 500;
}

.contact-hours-time {
    color: var(--color-gray);
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-gray-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--color-white);
}

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

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.form-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--color-gray);
    margin-bottom: 30px;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    background: var(--color-light);
}

.thanks-card {
    max-width: 600px;
    text-align: center;
    background: var(--color-white);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.thanks-icon {
    width: 90px;
    height: 90px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 45px;
    height: 45px;
    stroke: var(--color-white);
}

.thanks-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.thanks-text {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.thanks-service {
    background: var(--color-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.thanks-service-label {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 5px;
}

.thanks-service-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-primary);
}

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

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

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

.footer-desc {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.7;
}

.footer-col {
    flex: 1 1 180px;
}

.footer-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: #999;
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copy {
    font-size: 0.9rem;
    color: #999;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    font-size: 0.9rem;
    color: #999;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: #ccc;
}

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

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

.cookie-btn {
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--color-primary);
    color: var(--color-white);
}

.cookie-accept:hover {
    background: var(--color-secondary);
}

.cookie-reject {
    background: transparent;
    color: var(--color-white);
    border: 1px solid #666;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(166,124,82,0.4);
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    background: var(--color-primary);
}

/* Page Header */
.page-header {
    padding: 150px 0 60px;
    background: var(--color-light);
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.page-breadcrumb {
    font-size: 0.95rem;
    color: var(--color-gray);
}

.page-breadcrumb a {
    color: var(--color-secondary);
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 40px 0 15px;
    color: var(--color-dark);
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 30px 0 12px;
    color: var(--color-dark);
}

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

.legal-content ul {
    margin: 15px 0 15px 25px;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--color-gray);
}

/* Gallery */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 10px);
    min-width: 280px;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-inner,
    .about-hero-inner,
    .features-wrap,
    .contact-wrap {
        flex-direction: column;
    }

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

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-medium);
        transform: translateY(-150%);
        transition: var(--transition);
    }

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

    .nav-toggle {
        display: flex;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .process-step {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 130px 0 70px;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    section {
        padding: 60px 0;
    }

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

    .process-step {
        flex: 1 1 100%;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .footer-inner {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .sticky-cta-btn {
        padding: 14px 22px;
        font-size: 0.9rem;
    }

    .form-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        flex: 0 0 320px;
    }
}
