        :root {
            --primary: #698B22;
            --primary-light: #7bab1e;
            --primary-lighter-transparent: rgba(123, 171, 30, 0.2);
            --primary-dark: #556b1c;
            --primary-transparent: rgba(105, 139, 34, 0.08);
            --secondary: #FFC107;
            --text-dark: #212121;
            --text-light: #757575;
            --background: #FFFFFF;
            --background-alt: #F9F9F9;
            --radius: 10px;
            --transition: all 0.3s ease;
            --card-shadow-main: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
            --card-shadow-hover: rgba(0, 0, 0, 0.07) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset, 0 4px 12px rgba(0, 0, 0, 0.08);
            --progress-red: #e63029;
            --progress-orange: #f39200;
            --progress-yellow: #fedb00;
            --progress-dark-green: #009345;
        }

        .section-title-decorator-v2--spaced {
            margin-top: 80px;
        }

        .content-card-wrapper--spaced {
            margin-bottom: 60px;
            padding: 30px 40px;
        }

        .faq-heading-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .decorator-title-v2--tight {
            margin: 0;
        }

        .btn-tertiary--nowrap {
            white-space: nowrap;
        }

        .footer-heading-spaced {
            margin-top: 30px;
        }

        .address-line-indent {
            padding-left: 30px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Geist Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--background-alt);
        }
        
        h1,
        h2,
        h3,
        h4 {
            color: var(--text-dark);
            line-height: 1.3;
        }
        
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        /* Header */
        
        .nav-link:hover:not(.contact-btn):not(.eb-callback-btn) {
            color: #333;
            background: #f5f5f5;
            border-radius: 6px;
        }
        
        .nav-link::after {
            display: none;
        }
        
        @media (min-width: 769px) {
            .nav-item:hover .dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0);
            }
        }
        
        .dropdown-link:hover {
            background: #f8fafc;
            color: #698b22;
            opacity: 1;
        }
        
        /* Hamburger Menu Icon Styles */
        
        .hamburger-icon::before,
        .hamburger-icon::after {
            content: '';
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #333;
            transition: transform 0.3s ease-in-out, top 0.3s ease-in-out 0.3s;
        }
        
        .hamburger-icon::before {
            top: -8px;
        }
        
        .hamburger-icon::after {
            top: 8px;
        }
        
        .nav-toggle[aria-expanded="true"] .hamburger-icon {
            background-color: transparent;
            transition: background-color 0s 0s linear;
        }
        
        .nav-toggle[aria-expanded="true"] .hamburger-icon::before {
            transform: rotate(45deg);
            top: 0;
            transition: top 0.3s ease-in-out, transform 0.3s ease-in-out 0.3s;
        }
        
        .nav-toggle[aria-expanded="true"] .hamburger-icon::after {
            transform: rotate(-45deg);
            top: 0;
            transition: top 0.3s ease-in-out, transform 0.3s ease-in-out 0.3s;
        }
        
        /* Mobile Navigation Styles */
        @media (max-width: 768px) {
            
            .nav.is-active {
                display: flex;
                transform: translateY(0);
                opacity: 1;
            }
            
            .nav .nav-item:last-of-type>.nav-link:not(.contact-btn) {
                border-bottom: none;
            }
            
            /* Mobile Dropdown Accordion Styles */
            .nav .dropdown {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                border: none;
                box-shadow: none;
                background-color: #e8e8e8;
                padding: 0;
                width: 100%;
                display: none;
                margin-top: 0;
                min-width: unset;
            }
            
            .nav-item.has-dropdown.open>.dropdown {
                display: block;
            }
            
            .nav-item.has-dropdown>.nav-link {
                cursor: pointer;
                position: relative;
            }
            
            
            .nav.is-active .dropdown-link:hover {
                background-color: #f8f8f8;
                color: #555;
            }
            
            .nav.is-active .dropdown-link {
                padding: 12px 20px;
            }
            
            .dropdown-link:last-child {
                border-bottom: none;
            }
        }
        
        .hero {
            position: relative;
            height: 70vh;
            min-height: 500px;
            background-image: url("../images/Sanierungsfahrplan/header.webp");
            background-color: #e2e8f0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px;
        }
        
        @media (max-width: 768px) {
            .hero {
                height: auto;
                min-height: 75vh;
            }
        }
        
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
            position: relative;
            z-index: 2;
        }
        
        .hero-title-card {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 20px 40px;
            max-width: 680px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            margin-top: 20px;
            margin-bottom: 15px;
            position: relative;
        }
        
        .hero-content {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            padding: 40px;
            max-width: 680px;
        }
        
        .hero-title-container {
            margin-bottom: 20px;
        }
        
        .hero-title-pre {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            border-radius: 8px;
            padding: 8px 16px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 16px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            letter-spacing: 0.025em;
        }
        
        .hero-title-main {
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            letter-spacing: -0.5px;
            margin: 0;
            line-height: 1.2;
            overflow-wrap: anywhere;
        }
        
        .hero-title-main-line1,
        .hero-title-main-line2 {
            display: block;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 35px;
            font-weight: 400;
            line-height: 1.5;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .btn-primary,
        .btn-secondary,
        .btn-tertiary {
            position: relative;
            overflow: hidden;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border-radius: 8px;
            font-size: 15px;
            cursor: pointer;
            font-weight: 500;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            padding: 14px 42px;
            border: none;
            font-weight: 600;
        }
        
        .btn-secondary {
            background: #1a1a1a;
            color: white;
            padding: 12px 22px;
            border: 1px solid #1a1a1a;
            font-weight: 500;
            gap: 6px;
        }

        .btn-tertiary {
            background: #1a1a1a;
            color: white;
            padding: 10px 24px;
            border: 1px solid #1a1a1a;
            font-weight: 600;
            font-size: 14px;
        }
        
        .btn-primary::after,
        .btn-secondary::after,
        .btn-tertiary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 100%);
            transform: skewX(-25deg);
            transition: transform 0s ease;
            pointer-events: none;
        }
        
        .btn-secondary::after,
        .btn-tertiary::after {
            background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.1) 70%, rgba(255, 255, 255, 0) 100%);
        }
        
        .btn-primary:hover::after,
        .btn-secondary:hover::after,
        .btn-tertiary:hover::after {
            transform: translateX(200%) skewX(-25deg);
            transition: transform 1.1s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .btn-primary:hover,
        .btn-secondary:hover,
        .btn-tertiary:hover {
            transform: scale(1.03);
        }

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

        .btn-secondary:hover {
            background-color: #333;
            border-color: #333;
        }

        .btn-tertiary:hover {
            background-color: #333;
            color: white;
            border-color: #333;
        }
        
        .arrow-down-svg {
            fill: white;
            transition: transform 0.2s ease;
            width: 18px;
            height: 18px;
            z-index: 1;
        }
        
        .btn-secondary>span:first-child {
            z-index: 1;
        }
        
        .btn-secondary:hover .arrow-down-svg {
            transform: translateY(2px);
        }
        
        .content-section {
            background-color: var(--background-alt);
            padding: 80px 0;
        }
        
        .section-title-decorator-v2 {
            margin-bottom: 40px;
        }
        
        .decorator-header-line {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .decorator-number-v2 {
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            background-color: var(--primary);
            padding: 4px 10px;
            border-radius: 4px;
            margin-right: 12px;
            line-height: 1;
            flex-shrink: 0;
        }
        
        .decorator-line-v2 {
            flex-grow: 1;
            height: 3px;
            background: linear-gradient(to right, transparent 0%, transparent 100%);
            transition: background 0.4s ease-out;
        }
        
        .decorator-title-v2 {
            font-size: 1.8rem;
            color: var(--text-dark);
            margin: 0;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .content-card-wrapper {
            background: white;
            border-radius: var(--radius);
            padding: 30px 40px;
            box-shadow: var(--card-shadow-main);
            margin-bottom: 60px;
        }
        
        .benefits-container {
            margin-bottom: 60px;
        }
        
        .benefits-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .benefit-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--card-shadow-main);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow-hover);
            background: rgba(255, 255, 255, 0.9);
        }
        
        .benefit-card .icon-circle {
            width: 40px;
            height: 40px;
            background: #1a1a1a;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }
        
        .benefit-card .icon-circle i {
            color: white;
            font-size: 18px;
        }
        
        .benefit-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .benefit-text {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }
        
        .requirements-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            position: relative;
            margin-bottom: 60px;
        }
        
        .requirement-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--card-shadow-main);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            flex: 0 0 calc(33.333% - 17px);
            min-width: 250px;
        }
        
        .requirements-container.grid-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .requirements-container.grid-layout .requirement-card {
            flex-basis: auto;
        }
        
        .requirement-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow-hover);
            background: rgba(255, 255, 255, 0.9);
        }
        
        .requirement-step-number {
            width: 40px;
            height: 40px;
            background: #1a1a1a;
            border-radius: 4px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 1;
            flex-shrink: 0;
            margin-bottom: 15px;
        }
        
        .requirement-step-number span {
            font-size: 1rem;
            font-weight: 700;
            color: white;
        }
        
        .requirement-content {
            flex-grow: 1;
            position: relative;
            z-index: 1;
        }
        
        .requirement-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .requirement-text {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 0.9rem;
        }
        
        .requirement-card:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 45px;
            left: calc(100% + 2px);
            width: 21px;
            height: 3px;
            background-color: var(--primary);
            z-index: 0;
            transform: none;
            transition: none;
        }
        
        .requirements-container.grid-layout .requirement-card::after {
            display: none;
        }
        
        .faq-container.content-card-wrapper {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--card-shadow-main);
            padding: 0;
            overflow: hidden;
            margin-bottom: 60px;
            transition: box-shadow 0.3s ease;
        }
        
        .faq-container.content-card-wrapper:hover {
            box-shadow: var(--card-shadow-hover);
        }
        
        .faq-list-item {
            border-bottom: 1px solid #f3f4f6;
        }
        
        .faq-list-item:last-child {
            border-bottom: none;
        }
        
        .faq-list-question {
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: background 0.2s ease;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
            justify-content: space-between;
        }
        
        .faq-list-question:hover {
            background: #f9fafb;
        }
        
        .faq-list-question .card-list-bullet {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .faq-list-question>span {
            flex-grow: 1;
        }
        
        .faq-list-question .faq-arrow {
            color: var(--primary);
            transition: transform 0.3s ease;
            font-size: 1em;
        }
        
        .faq-list-question.active {
            color: var(--primary);
        }
        
        .faq-list-question.active .faq-arrow {
            transform: rotate(180deg);
        }
        
        .faq-list-answer {
            color: var(--text-light);
            line-height: 1.7;
            padding: 0px 24px 20px 44px;
            display: none;
            background-color: #fff;
            font-size: 0.95rem;
        }
        
        .faq-list-question.active+.faq-list-answer {
            display: block;
        }
        /* Styles for "Ihr Weg zum Effizienzhaus" (Section 02) */
        
        .timeline-image-container {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .timeline-image-container img {
            width: 100%;
            max-width: 100%;
            display: block;
            margin-left: auto;
            margin-right: auto;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--card-shadow-main);
        }
        
        .timeline-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .timeline-card {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--card-shadow-main);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        
        .timeline-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--card-shadow-hover);
        }
        
        .timeline-card-header {
            background-color: var(--primary);
            /* Default green */
            padding: 12px 20px;
        }
        
        .timeline-card-header.red {
            background-color: var(--progress-red);
        }
        
        .timeline-card-header.orange {
            background-color: var(--progress-orange);
        }
        
        .timeline-card-header.yellow {
            background-color: var(--progress-yellow);
        }
        
        .timeline-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0;
        }
        
        .timeline-card-content {
            padding: 20px;
            flex-grow: 1;
            background-color: white;
        }
        
        .timeline-card-text {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        .info-box.text-like-hinweis {
            background: white;
            padding: 18px 20px;
            border-radius: var(--radius);
            box-shadow: var(--card-shadow-main);
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 0;
            border-left: none;
        }
        
        .info-box.text-like-hinweis::before {
            content: "!";
            font-family: 'Geist Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: bold;
            font-size: 1.2rem;
            color: white;
            background: var(--primary);
            width: 28px;
            height: 28px;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .info-box.text-like-hinweis p {
            font-size: 1rem;
            color: var(--text-light);
            margin: 0;
        }
        
        .info-box.text-like-hinweis strong:first-child {
            color: var(--text-dark);
            font-weight: 600;
        }
        
        .footer {
            background: #222222;
            color: #e0e0e0;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1.3fr;
            gap: 30px;
            margin-bottom: 50px;
            align-items: start;
        }
        
        .footer-section h3 {
            font-size: 16px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding-bottom: 8px;
            border-bottom: 1px solid #444;
            margin-top: 0;
            margin-bottom: 20px;
        }
        
        .footer-contact-card {
            background-color: #2a2a2a;
            padding: 25px 25px 45px 25px;
            border-radius: 8px;
            box-shadow: var(--card-shadow-main);
        }
        
        .contact-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-card-header h3 {
            font-size: 16px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
            padding: 0;
        }
        
        .contact-card-header h3 span {
            padding-bottom: 8px;
            border-bottom: 1px solid #444;
            display: inline-block;
        }
        
        .contact-card-header .social-links {
            position: static;
            display: flex;
            gap: 10px;
        }
        
        .footer-section p {
            font-size: 14px;
            line-height: 1.8;
            color: #cccccc;
            margin-bottom: 10px;
        }
        
        .address-details {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .address-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: #cccccc;
        }
        
        .address-item span {
            line-height: 1.5;
        }
        
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 0;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #e0e0e0;
            font-size: 14px;
        }
        
        .contact-item a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .contact-item a:hover {
            color: white;
        }
        
        .contact-item span {
            line-height: 1.5;
        }
        
        .contact-icon {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            fill: currentColor;
        }
        
        .contact-icon.stroke {
            fill: none;
            stroke: currentColor;
        }
        
        .social-link {
            width: 32px;
            height: 32px;
            background: #383838;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        
        .social-link:hover {
            background: #4a4a4a;
            transform: translateY(-2px);
        }
        
        .social-icon {
            width: 18px;
            height: 18px;
            color: white;
        }
        
        .opening-hours-section .opening-hours {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: #cccccc;
        }
        
        .hours-label {
            font-weight: 500;
        }
        
        .footer-bottom {
            border-top: 1px solid #444444;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .copyright {
            font-size: 13px;
            color: #aaaaaa;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }
        
        .footer-bottom-links a {
            font-size: 13px;
            color: #aaaaaa;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .footer-bottom-links a:hover {
            color: white;
        }

        @media screen and (max-width: 1200px) {
            .hero-title-main {
                font-size: 2.6rem;
            }
        }
        
        @media screen and (max-width: 1100px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-section.opening-hours-section,
            .footer-section.footer-contact-card {
                margin-top: 0;
            }
            .decorator-title-v2 {
                font-size: 1.6rem;
            }
            .timeline-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media screen and (min-width: 992px) {
            .timeline-cards-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media screen and (max-width: 991px) and (min-width: 769px) {
            .timeline-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media screen and (max-width: 768px) {
            .nav.is-active {
                display: flex;
                transform: translateY(0);
                opacity: 1;
            }
            .nav .nav-item:last-of-type>.nav-link:not(.contact-btn) {
                border-bottom: none;
            }
            .nav .dropdown {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                border: none;
                box-shadow: none;
                background-color: #e8e8e8;
                padding: 0;
                width: 100%;
                display: none;
                margin-top: 0;
                min-width: unset;
            }
            .nav-item.has-dropdown.open>.dropdown {
                display: block;
            }
            
            .nav-item.has-dropdown>.nav-link {
                cursor: pointer;
                position: relative;
            }
            
            .nav.is-active .dropdown-link:hover {
                background-color: #f8f8f8;
                color: #555;
            }
            .nav.is-active .dropdown-link {
                padding: 12px 20px;
            }
            .dropdown-link:last-child {
                border-bottom: none;
            }
            .hero {
                height: auto;
                min-height: 75vh;
                text-align: center;
                margin-top: 0;
            }
            .hero-content {
                padding: 25px;
                max-width: 100%;
            }
            .hero-container {
                padding: 0 20px;
            }
            .hero-title-pre {
                font-size: 1.1rem;
            }
            .hero-title-main {
                font-size: 1.8rem;
                line-height: 1.15;
            }
            .hero-buttons {
                flex-direction: column;
                width: 100%;
                gap: 20px;
            }
            .btn-primary,
            .btn-secondary {
                width: 100%;
                padding-left: 20px;
                padding-right: 20px;
            }
            .btn-primary {
                padding-top: 12px;
                padding-bottom: 12px;
            }
            .hero-subtitle {
                font-size: 0.95rem;
            }
            .content-section {
                padding: 50px 0;
            }
            .container {
                padding: 0 20px;
            }
            .decorator-header-line {
                margin-bottom: 8px;
            }
            .decorator-number-v2 {
                font-size: 1.1rem;
                padding: 3px 8px;
                margin-right: 10px;
            }
            .decorator-line-v2 {
                height: 2px;
            }
            .decorator-title-v2 {
                font-size: 1.4rem;
            }
            .section-title-decorator-v2 {
                margin-bottom: 25px;
            }
            .benefits-container {
                grid-template-columns: 1fr;
            }
            .requirements-container {
                padding: 0;
            }
            .requirements-container.grid-layout {
                grid-template-columns: 1fr;
                padding: 0;
            }
            .requirement-card {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
                flex-basis: 100%;
                margin-bottom: 15px;
            }
            .requirement-card:not(:last-child)::after {
                display: none;
            }
            .requirements-container.grid-layout .requirement-card::after {
                display: none;
            }
            .timeline-image-container {
                display: none;
            }
            .timeline-cards-grid {
                grid-template-columns: 1fr;
            }
            .faq-list-question {
                padding: 14px 20px;
                font-size: 1rem;
            }
            .faq-list-answer {
                padding: 0px 20px 15px 38px;
                font-size: 0.9rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .footer-section,
            .footer-contact-card {
                padding: 20px;
            }
            .footer-section h3,
            .contact-card-header h3 span {
                text-align: center;
            }
            .contact-card-header {
                flex-direction: column;
                align-items: center;
            }
            .contact-card-header h3 {
                text-align: center;
            }
            .contact-card-header .social-links {
                margin-top: 10px;
                justify-content: center;
            }
            .footer-links {
                padding-left: 0;
                text-align: center;
            }
            .footer-links li {
                text-align: center;
            }
            .footer-links li a {
                display: inline-block;
                padding: 5px 0;
            }
            .footer-contact-card .address-details,
            .footer-contact-card .contact-info {
                align-items: center;
                text-align: center;
            }
            .footer-contact-card .address-item,
            .footer-contact-card .contact-item {
                justify-content: center;
                flex-direction: column;
                gap: 5px;
            }
            .footer-contact-card .address-item span,
            .footer-contact-card .contact-item a,
            .footer-contact-card .contact-item span {
                display: block;
                text-align: center;
                padding-left: 0;
            }
            .footer-contact-card .contact-icon {
                margin-bottom: 3px;
            }
            .opening-hours-section {
                text-align: center;
            }
            .opening-hours-section .opening-hours {
                align-items: center;
            }
            .opening-hours-section .hours-item {
                width: 80%;
                max-width: 280px;
                justify-content: space-between;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
