        :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);
        }

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

        .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 .dropdown-arrow {
            font-size: 0.7em;
            margin-left: 4px;
        }
        
        @media (min-width: 769px) {
            .nav-item:hover .dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateX(-50%) translateY(0);
            }
        }
        
        .dropdown-link:hover {
            background: #f8fafc;
            color: var(--primary);
            opacity: 1;
        }
        
        .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;
        }
        
        .hero {
            position: relative;
            height: 70vh;
            min-height: 500px;
            background-color: #e2e8f0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-waerme {
            background-image: url('../images/Wärmebrückenberechnung/header.webp');
        }
        
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
            position: relative;
            z-index: 2;
        }
        
        .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: 620px;
        }
        
        .hero-title-container {
            margin-bottom: 20px;
        }
        
        .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: 620px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            margin-top: 20px;
            margin-bottom: 15px;
            position: relative;
        }
        
        .hero-title-main {
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.2;
            color: white;
            letter-spacing: -0.5px;
            margin: 0;
        }
        
        .hero-title-subtitle {
            display: block;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            margin-top: 8px;
            letter-spacing: -0.1px;
            line-height: 1.3;
        }
        
        .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-tertiary {
            background: #1a1a1a;
            color: white;
            padding: 10px 24px;
            border: 1px solid #1a1a1a;
            font-weight: 600;
            font-size: 14px;
        }

        .btn-secondary {
            background: #1a1a1a;
            color: white;
            padding: 12px 22px;
            border: 1px solid #1a1a1a;
            font-weight: 500;
            gap: 6px;
        }
        
        .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-primary:hover {
            background-color: var(--primary-dark);
        }
        
        .btn-secondary:hover {
            background-color: #333;
            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 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }
        
        .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;
        }
        /* Removed .benefit-card::before and .benefit-card:hover::before */
        
        .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;
            opacity: 1;
        }
        /* Removed .requirement-card::before and .requirement-card:hover::before */
        
        .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;
            opacity: 1;
            visibility: visible;
        }
        
        .requirement-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 1;
            visibility: visible;
        }
        
        .requirement-text {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 0.9rem;
            opacity: 1;
            visibility: visible;
        }
        
        .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;
        }
        
        .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;
        }
        
        .interactive-house-container {
            position: relative;
            width: 100%;
            max-width: 1120px;
            margin: 0 auto 60px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            min-height: auto;
            padding-top: 20px;
        }
        
        #house-image {
            width: 100%;
            max-width: 1000px;
            height: auto;
            display: block;
            border-radius: 4px;
            transform: translateY(-110px);
        }
        
        @keyframes pulsateHotspot {
            0% {
                box-shadow: 0 0 0 4px rgba(105, 139, 34, 0.3);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(105, 139, 34, 0.5);
            }
            100% {
                box-shadow: 0 0 0 4px rgba(105, 139, 34, 0.3);
            }
        }
        
        .hotspot {
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: var(--primary);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 5;
            transform: translate(-50%, -50%);
            animation: pulsateHotspot 1.5s infinite ease-in-out;
        }
        
        .hotspot:hover {
            background-color: var(--primary-light);
            transform: translate(-50%, -50%) scale(1.2);
            box-shadow: 0 0 0 6px rgba(105, 139, 34, 0.5);
            animation: none;
        }
        
        .hotspot i {
            color: white;
            font-size: 10px;
        }
        
        .hotspot[data-target="card-roof-connection"] {
            top: 35%;
            left: 63%;
        }
        
        .hotspot[data-target="card-exterior-corner"] {
            top: 51%;
            left: 44%;
        }
        
        .hotspot[data-target="card-roller-shutter"] {
            top: 30%;
            left: 35%;
        }
        
        .hotspot[data-target="card-window-reveal"] {
            top: 52%;
            left: 66%;
        }
        
        .hotspot[data-target="card-floor-slab"] {
            top: 64%;
            left: 55%;
        }
        
        .hotspot[data-target="card-balcony-slab"] {
            top: 45%;
            left: 25%;
        }
        
        .info-card {
            position: fixed;
            top: 35%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: none;
            width: 360px;
            max-width: calc(100vw - 40px);
            background-color: white;
            border-radius: var(--radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            padding: 20px;
            z-index: 1000;
            border-top: 4px solid var(--primary);
            transition: opacity 0.3s ease, transform 0.3s ease;
            opacity: 0;
        }
        
        .info-card.visible {
            display: block;
            opacity: 1;
            transform: translate(-50%, -50%);
        }
        
        .info-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 15px;
        }
        
        .info-card-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
        }
        
        .info-card-text {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.6;
        }
        
        .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) {
            .requirement-card {
                flex-basis: calc(50% - 13px);
            }
            .requirement-card:nth-child(2)::after {
                display: none;
            }
        }
        
        @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;
            }
        }
        
        @media screen and (max-width: 992px) {
            .interactive-house-container {
                min-height: auto;
                padding: 20px;
                margin-bottom: 0px;
            }
            #house-image {
                max-width: 800px;
            }
            .info-card {
                width: 320px;
                max-width: calc(100vw - 30px);
                padding: 15px;
            }
            .info-card-title {
                font-size: 1rem;
            }
            .info-card-text {
                font-size: 0.85rem;
            }
        }
        
        @media screen and (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .hero {
                height: auto;
                min-height: 70vh;
                text-align: center;
            }
            .hero-container {
                padding: 0 15px;
            }
            .hero-content {
                padding: 20px 15px;
                max-width: 100%;
            }
            .hero-title-card {
                padding: 12px 20px;
                margin-top: 10px;
                margin-bottom: 8px;
            }
            .hero-title-main {
                font-size: 1.0rem;
                line-height: 1.1;
            }
            .hero-title-subtitle {
                font-size: 0.85rem;
                margin-top: 4px;
            }
            .hero-subtitle {
                font-size: 0.9rem;
                margin-bottom: 25px;
                line-height: 1.4;
            }
            .hero-buttons {
                flex-direction: column;
                width: 100%;
                gap: 15px;
            }
            .btn-primary,
            .btn-secondary {
                width: 100%;
                padding: 12px 20px;
                font-size: 14px;
            }
            .content-section {
                padding: 40px 0;
            }
            .decorator-title-v2 {
                font-size: 1.3rem;
            }
            .decorator-number-v2 {
                font-size: 1rem;
                padding: 2px 6px;
                margin-right: 8px;
            }
            .info-card {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: calc(100vw - 30px);
                max-width: 350px;
                padding: 20px;
                z-index: 1000;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            }
            .info-card img {
                height: 180px;
            }
            .info-card-title {
                font-size: 0.95rem;
            }
            .info-card-text {
                font-size: 0.8rem;
            }
            #house-image {
                max-width: 110%;
                height: auto;
                transform: translateY(20px);
            }
            .interactive-house-container {
                padding: 5px;
            }
        }
        
        @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: #f8f8f8;
                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;
            }
            .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;
            }
            .hero-content {
                padding: 25px;
            }
            .hero-container {
                padding: 0 20px;
            }
            .hero-content {
                max-width: 100%;
            }
            .hero-title-main {
                font-size: 1.3rem;
            }
            .hero-title-subtitle {
                font-size: 1.0rem;
                margin-top: 6px;
            }
            .hero-title-card {
                padding: 15px 25px;
                margin-top: 15px;
                margin-bottom: 10px;
            }
            .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;
            }
            .content-card-wrapper {
                padding: 20px;
            }
            .interactive-house-container {
                padding: 10px;
            }
            .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;
            }
            .requirement-card {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
                flex-basis: 100%;
                margin-bottom: 35px;
            }
            .requirement-card:not(:last-child)::after {
                display: block;
                top: auto;
                bottom: -20px;
                left: 20px;
                transform: none !important;
                width: 3px !important;
                height: 20px !important;
                background: var(--primary) !important;
                z-index: 0 !important;
            }
            .requirement-card:last-child::after {
                display: none;
            }
            .interactive-house-container {
                min-height: auto;
                margin-bottom: 40px;
                padding: 10px;
            }
            #house-image {
                max-width: 105%;
                transform: translateY(15px);
            }
            .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;
            }
        }
        
        @media screen and (max-width: 576px) {
            .interactive-house-container {
                min-height: auto;
            }
            #house-image {
                max-width: 100%;
            }
            .hotspot {
                width: 18px;
                height: 18px;
            }
            .hotspot i {
                font-size: 9px;
            }
            .info-card {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: calc(100vw - 40px);
                max-width: 320px;
                padding: 15px;
                z-index: 1000;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                font-size: 0.8rem;
            }
            .info-card-title {
                font-size: 0.9rem;
            }
        }
    
