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

        :root {
            --primary: #3180a4;
            --primary-dark: #286a8a;
            --primary-light: #e8f2f7;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-500: #6b7280;
            --gray-700: #374151;
            --gray-900: #111827;
            --green: #10b981;
        }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--gray-900);
            background: var(--white);
        }

        header {
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

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

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 60px;
            width: auto;
            object-fit: contain;
            object-position: left center;
        }

        @media (max-width: 768px) {
            .logo img {
                height: 48px;
                width: auto;
            }
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .header-phone {
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .header-phone:hover { color: var(--primary); }

        @media (max-width: 600px) {
            .header-phone { display: none; }
        }

        .header-cta {
            background: var(--primary);
            color: var(--white);
            padding: 10px 22px;
            border-radius: 980px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.2s;
        }

        .header-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        .header-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        .hero {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
            padding: 60px 0 80px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        @media (max-width: 900px) {
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
        }

        .hero h1 {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--gray-900);
            line-height: 1.2;
            margin-bottom: 16px;
        }

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

        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--gray-500);
            margin-bottom: 32px;
        }

        .hero-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .hero-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            font-size: 1rem;
            color: var(--gray-700);
        }

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

        .btn-secondary {
            display: inline-block;
            background: var(--white);
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 14px 28px;
            border-radius: 980px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
        }

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

        /* Booking Form */
        .booking-form-card {
            background: var(--white);
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 20px 60px rgba(0, 206, 209, 0.15);
            border: 1px solid var(--gray-200);
        }

        .booking-form-card h2 {
            font-size: 1.25rem;
            color: var(--gray-900);
            margin-bottom: 24px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray-700);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.2s;
            background: var(--white);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.15);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        @media (max-width: 500px) {
            .form-row { grid-template-columns: 1fr; }
        }

        /* Consent Checkboxes */
        .consent-group {
            margin: 20px 0;
            padding: 16px;
            background: var(--gray-50);
            border-radius: 8px;
        }

        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            cursor: pointer;
            font-size: 0.85rem;
            color: var(--gray-700);
            margin-bottom: 12px;
        }

        .checkbox-label:last-child {
            margin-bottom: 0;
        }

        .checkbox-label input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            accent-color: var(--primary);
            cursor: pointer;
            flex-shrink: 0;
        }

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

        .checkbox-label a:hover {
            color: var(--primary-dark);
        }

        /* Price Box */
        .price-box {
            background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
            display: none;
        }

        .price-box.show { display: block; }

        .price-box h3 {
            font-size: 0.9rem;
            color: var(--gray-700);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .price-breakdown {
            font-size: 0.85rem;
            color: var(--gray-500);
            margin-bottom: 12px;
        }

        .price-breakdown div {
            display: flex;
            justify-content: space-between;
            padding: 4px 0;
        }

        .price-breakdown .discount {
            color: var(--green);
        }

        .price-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 1px solid var(--gray-200);
            margin-top: 8px;
        }

        .price-total .label {
            font-weight: 600;
            color: var(--gray-900);
        }

        .price-total .amount {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary);
        }

        .price-total .amount span {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--gray-500);
        }

        .price-note {
            font-size: 0.75rem;
            color: var(--gray-500);
            margin-top: 8px;
        }

        .btn-primary {
            width: 100%;
            padding: 16px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 980px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 8px;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 206, 209, 0.3);
        }

        .btn-primary:disabled {
            background: var(--gray-300);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .form-divider {
            display: flex;
            align-items: center;
            margin: 20px 0;
            color: var(--gray-500);
            font-size: 0.85rem;
        }

        .form-divider::before,
        .form-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--gray-200);
        }

        .form-divider span { padding: 0 12px; }

        .btn-outline {
            width: 100%;
            padding: 14px;
            background: transparent;
            color: var(--gray-700);
            border: 2px solid var(--gray-300);
            border-radius: 980px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

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

        /* Payment Methods */
        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--gray-200);
        }

        .payment-methods img {
            height: 24px;
            opacity: 0.6;
        }

        .payment-methods span {
            font-size: 0.75rem;
            color: var(--gray-500);
        }

        /* Apartment Gallery */
        .apartments {
            padding: 80px 0;
            background: var(--white);
        }

        .apartments .section-header {
            margin-bottom: 40px;
        }

        .apartments .section-header h2 {
            font-size: 2rem;
            color: var(--gray-900);
        }

        .apartments .section-header p {
            font-size: 1.1rem;
            color: var(--gray-500);
        }

        .apartment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        @media (max-width: 900px) {
            .apartment-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 600px) {
            .apartment-grid { grid-template-columns: 1fr; }
        }

        .apartment-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            background: var(--white);
        }

        .apartment-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(49, 128, 164, 0.2);
        }

        .apartment-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .apartment-card:hover img {
            transform: scale(1.05);
        }

        .apartment-card-content {
            padding: 20px;
            text-align: center;
        }

        .apartment-card-content h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 10px;
        }

        .apartment-card-content .apartment-meta {
            display: flex;
            justify-content: center;
            gap: 16px;
            font-size: 0.85rem;
            color: var(--gray-500);
            margin-bottom: 12px;
        }

        .apartment-card-content .apartment-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .apartment-card-content .apartment-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .apartment-card-content .apartment-price span {
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--gray-500);
        }

        .apartment-cta {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(49, 128, 164, 0.3);
        }

        .apartment-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(49, 128, 164, 0.4);
        }

        .apartment-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--primary);
            color: var(--white);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .apartment-view-btn {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--gray-700);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.3s ease;
        }

        .apartment-card:hover .apartment-view-btn {
            opacity: 1;
            transform: scale(1);
        }

        /* Apartment Modal */
        .apartment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1000;
            overflow-y: auto;
            padding: 40px 20px;
        }

        .apartment-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: var(--white);
            border-radius: 20px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gray-100);
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: var(--gray-200);
            transform: rotate(90deg);
        }

        .modal-gallery {
            position: relative;
            background: var(--gray-100);
        }

        .modal-gallery-main {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .modal-gallery-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .modal-gallery-thumb {
            width: 60px;
            height: 45px;
            border-radius: 8px;
            object-fit: cover;
            cursor: pointer;
            opacity: 0.6;
            border: 2px solid transparent;
            transition: all 0.2s;
        }

        .modal-gallery-thumb.active,
        .modal-gallery-thumb:hover {
            opacity: 1;
            border-color: var(--white);
        }

        .modal-gallery-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 16px;
            pointer-events: none;
        }

        .modal-gallery-arrow {
            background: rgba(255, 255, 255, 0.95);
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-size: 1.25rem;
            cursor: pointer;
            pointer-events: auto;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-gallery-arrow:hover {
            background: var(--white);
            transform: scale(1.1);
        }

        .modal-body {
            padding: 32px;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 24px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .modal-header h2 {
            font-size: 1.75rem;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .modal-header .modal-location {
            font-size: 0.95rem;
            color: var(--gray-500);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .modal-price-box {
            background: var(--primary-light);
            padding: 16px 24px;
            border-radius: 12px;
            text-align: center;
        }

        .modal-price-box .price {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary);
        }

        .modal-price-box .price-sub {
            font-size: 0.85rem;
            color: var(--gray-500);
        }

        .modal-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }

        @media (max-width: 600px) {
            .modal-features { grid-template-columns: 1fr; }
        }

        .modal-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: var(--gray-50);
            border-radius: 10px;
        }

        .modal-feature-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .modal-feature-text h4 {
            font-size: 0.9rem;
            color: var(--gray-900);
            margin-bottom: 2px;
        }

        .modal-feature-text p {
            font-size: 0.8rem;
            color: var(--gray-500);
        }

        .modal-description {
            color: var(--gray-700);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .modal-cta {
            display: flex;
            gap: 16px;
        }

        .modal-cta .btn-primary {
            flex: 1;
            margin-top: 0;
        }

        .modal-cta .btn-secondary {
            padding: 16px 24px;
        }

        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background: var(--gray-50);
        }

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

        .section-header h2 {
            font-size: 1.75rem;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .section-header p {
            font-size: 1rem;
            color: var(--gray-500);
            max-width: 600px;
            margin: 0 auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        @media (max-width: 900px) {
            .benefits-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 500px) {
            .benefits-grid { grid-template-columns: 1fr; }
        }

        .benefit-card {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            border: 1px solid var(--gray-200);
            transition: all 0.2s;
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .benefit-card .icon {
            font-size: 2rem;
            margin-bottom: 12px;
        }

        .benefit-card h3 {
            font-size: 1rem;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .benefit-card p {
            font-size: 0.85rem;
            color: var(--gray-500);
            line-height: 1.5;
        }

        /* Locations */
        .locations { padding: 80px 0; }

        .locations-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        @media (max-width: 700px) {
            .locations-grid { grid-template-columns: 1fr; }
        }

        .location-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--gray-200);
        }

        .location-image {
            height: 200px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3rem;
            overflow: hidden;
        }

        .location-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .location-card:hover .location-image img {
            transform: scale(1.05);
        }

        .location-content { padding: 24px; }

        .location-content h3 {
            font-size: 1.25rem;
            color: var(--gray-900);
            margin-bottom: 8px;
        }

        .location-content .address {
            font-size: 0.9rem;
            color: var(--gray-500);
            margin-bottom: 8px;
        }

        .location-content .price-tag {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary-dark);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .location-features { list-style: none; }

        .location-features li {
            font-size: 0.9rem;
            color: var(--gray-700);
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .location-features li::before {
            content: "✓";
            color: var(--primary);
            font-weight: bold;
        }

        .btn-download {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            padding: 10px 16px;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 980px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.2s;
        }

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

        /* Trust Section */
        .trust {
            padding: 60px 0;
            background: var(--primary);
            color: var(--white);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            text-align: center;
        }

        @media (max-width: 700px) {
            .trust-grid { grid-template-columns: repeat(2, 1fr); }
        }

        .trust-item .number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .trust-item .label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background: var(--gray-900);
            color: var(--gray-300);
            padding: 40px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }

        @media (max-width: 700px) {
            .footer-grid { grid-template-columns: 1fr; gap: 24px; }
        }

        .footer-brand h3 {
            font-size: 1.25rem;
            color: var(--white);
            margin-bottom: 12px;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-links h4 {
            font-size: 0.9rem;
            color: var(--white);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 8px; }

        .footer-links a {
            color: var(--gray-300);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

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

        .footer-bottom {
            border-top: 1px solid var(--gray-700);
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            padding: 20px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: var(--white);
            border-radius: 16px;
            width: 100%;
            max-width: 560px;
            max-height: 90vh;
            overflow-y: auto;
            transform: translateY(20px);
            transition: transform 0.3s;
        }

        .modal-overlay.active .modal {
            transform: translateY(0);
        }

        .modal-header {
            padding: 24px 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .modal-header h2 {
            font-size: 1.25rem;
            color: var(--gray-900);
        }

        .modal-header p {
            font-size: 0.9rem;
            color: var(--gray-500);
            margin-top: 4px;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray-500);
            cursor: pointer;
            padding: 4px;
            line-height: 1;
        }

        .modal-close:hover { color: var(--gray-900); }

        .modal-body { padding: 24px; }

        /* Messages */
        .success-message {
            background: #d1fac5;
            border: 1px solid #6ee7b7;
            color: #065f46;
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 16px;
            display: none;
        }

        .success-message.show { display: block; }

        .error-message {
            background: #fee2e2;
            border: 1px solid #fecaca;
            color: #991b1b;
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 16px;
            display: none;
        }

        .error-message.show { display: block; }

        .hero-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff8e1;
            color: #5a4500;
            padding: 10px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 20px;
            border: 1px solid #ffe082;
        }

        .hero-trust-badge .stars {
            color: #f9a825;
            font-size: 1rem;
            letter-spacing: 1px;
        }

        .hero-trust-badge strong {
            color: #3180a4;
            font-weight: 700;
        }

        /* Loading spinner */
        .spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 0.8s linear infinite;
            margin-right: 8px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Custom Flatpickr Styles - Professional & Larger */
        .flatpickr-calendar {
            font-family: 'Inter', -apple-system, sans-serif !important;
            border-radius: 16px !important;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1) !important;
            border: 1px solid var(--gray-200) !important;
            padding: 8px !important;
            width: 340px !important;
        }

        .flatpickr-calendar.arrowTop:before,
        .flatpickr-calendar.arrowTop:after {
            border-bottom-color: var(--primary) !important;
        }

        .flatpickr-months {
            padding: 12px 8px !important;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
            border-radius: 12px 12px 0 0 !important;
            margin: -8px -8px 8px -8px !important;
        }

        .flatpickr-months .flatpickr-month {
            color: white !important;
            fill: white !important;
            height: 40px !important;
        }

        .flatpickr-current-month {
            font-size: 1.15rem !important;
            font-weight: 600 !important;
            color: white !important;
            padding-top: 8px !important;
        }

        .flatpickr-current-month .flatpickr-monthDropdown-months {
            background: transparent !important;
            color: white !important;
            font-weight: 600 !important;
        }

        .flatpickr-current-month input.cur-year {
            color: white !important;
            font-weight: 600 !important;
        }

        .flatpickr-months .flatpickr-prev-month,
        .flatpickr-months .flatpickr-next-month {
            fill: white !important;
            color: white !important;
            padding: 8px 12px !important;
        }

        .flatpickr-months .flatpickr-prev-month:hover,
        .flatpickr-months .flatpickr-next-month:hover {
            background: rgba(255, 255, 255, 0.2) !important;
            border-radius: 8px !important;
        }

        .flatpickr-months .flatpickr-prev-month svg,
        .flatpickr-months .flatpickr-next-month svg {
            width: 14px !important;
            height: 14px !important;
        }

        .flatpickr-weekdays {
            background: transparent !important;
            padding: 8px 0 !important;
        }

        .flatpickr-weekday {
            color: var(--gray-500) !important;
            font-weight: 600 !important;
            font-size: 0.8rem !important;
            text-transform: uppercase !important;
        }

        .flatpickr-days {
            width: 100% !important;
        }

        .dayContainer {
            width: 100% !important;
            min-width: 100% !important;
            max-width: 100% !important;
        }

        .flatpickr-day {
            width: 14.2857% !important;
            max-width: 14.2857% !important;
            height: 44px !important;
            line-height: 44px !important;
            font-size: 0.95rem !important;
            font-weight: 500 !important;
            border-radius: 10px !important;
            margin: 0 !important;
            color: var(--gray-700) !important;
            transition: all 0.2s ease !important;
        }

        .flatpickr-day:hover {
            background: var(--primary-light) !important;
            border-color: var(--primary) !important;
            color: var(--primary-dark) !important;
        }

        .flatpickr-day.today {
            border: 2px solid var(--primary) !important;
            background: transparent !important;
            color: var(--primary) !important;
            font-weight: 700 !important;
        }

        .flatpickr-day.selected,
        .flatpickr-day.startRange,
        .flatpickr-day.endRange {
            background: var(--primary) !important;
            border-color: var(--primary) !important;
            color: white !important;
            font-weight: 600 !important;
        }

        .flatpickr-day.selected:hover,
        .flatpickr-day.startRange:hover,
        .flatpickr-day.endRange:hover {
            background: var(--primary-dark) !important;
            border-color: var(--primary-dark) !important;
        }

        .flatpickr-day.inRange {
            background: var(--primary-light) !important;
            border-color: var(--primary-light) !important;
            color: var(--primary-dark) !important;
            box-shadow: none !important;
        }

        .flatpickr-day.flatpickr-disabled,
        .flatpickr-day.flatpickr-disabled:hover {
            color: #c5c5c5 !important;
            background: repeating-linear-gradient(
                45deg,
                #fafafa,
                #fafafa 4px,
                #f0f0f0 4px,
                #f0f0f0 8px
            ) !important;
            cursor: not-allowed !important;
            text-decoration: line-through;
            pointer-events: none;
        }

        .flatpickr-day.prevMonthDay,
        .flatpickr-day.nextMonthDay {
            color: var(--gray-300) !important;
            background: transparent !important;
        }

        /* Date Input Field Styling */
        .date-input-wrapper {
            position: relative;
        }

        .date-input-wrapper input {
            cursor: pointer !important;
            padding-right: 44px !important;
        }

        .date-input-wrapper .calendar-icon {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-500);
            pointer-events: none;
            font-size: 1.1rem;
        }

        .date-input-wrapper input:focus + .calendar-icon {
            color: var(--primary);
        }

        /* Availability Calendar Styles */
        .availability-section {
            margin-bottom: 24px;
            padding: 20px;
            background: var(--gray-50);
            border-radius: 12px;
            border: 1px solid var(--gray-200);
        }

        .availability-section h3 {
            font-size: 1rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .availability-legend {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            color: var(--gray-600);
        }

        .legend-dot {
            width: 12px;
            height: 12px;
            border-radius: 3px;
        }

        .legend-dot.available { background: #10b981; }
        .legend-dot.low { background: #f59e0b; }
        .legend-dot.blocked { background: #ef4444; }

        .availability-calendar {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            margin-top: 12px;
        }

        .cal-header {
            text-align: center;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--gray-500);
            padding: 8px 0;
        }

        .cal-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            border-radius: 6px;
            cursor: default;
            transition: all 0.15s;
        }

        .cal-day.empty { background: transparent; }
        .cal-day.available { background: #d1fac5; color: #065f46; }
        .cal-day.low { background: #fef3c7; color: #92400e; }
        .cal-day.blocked { background: #fee2e2; color: #991b1b; text-decoration: line-through; }
        .cal-day.past { background: var(--gray-100); color: var(--gray-400); }

        .cal-month-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .cal-month-nav button {
            background: var(--white);
            border: 1px solid var(--gray-300);
            border-radius: 6px;
            padding: 6px 12px;
            cursor: pointer;
            font-size: 0.85rem;
        }

        .cal-month-nav button:hover {
            background: var(--gray-100);
        }

        .cal-month-title {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .availability-loading {
            text-align: center;
            padding: 30px;
            color: var(--gray-500);
        }

        /* Flatpickr overrides for blocked dates */
        .flatpickr-day.blocked-date {
            background: #fee2e2 !important;
            color: #991b1b !important;
            text-decoration: line-through;
        }

        .flatpickr-day.low-availability {
            background: #fef3c7 !important;
            color: #92400e !important;
        }

        /* Hero Pro (Hotel Style) */
        .hero-pro {
            position: relative;
            min-height: 560px;
            display: flex;
            align-items: center;
            padding: 80px 0 140px 0;
            overflow: hidden;
        }

        .hero-pro-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-pro-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-pro-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15, 30, 50, 0.75) 0%, rgba(49, 128, 164, 0.55) 100%);
        }

        .hero-pro-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .hero-pro-trust {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .hero-pro-trust .stars {
            color: #ffd54f;
            letter-spacing: 1px;
        }

        .hero-pro-trust strong {
            color: white;
            font-weight: 700;
        }

        .hero-pro-title {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
            line-height: 1.15;
            text-shadow: 0 2px 16px rgba(0,0,0,0.4);
        }

        .hero-pro-title span {
            color: #ffd54f;
        }

        .hero-pro-subtitle {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.95);
            max-width: 720px;
            margin: 0 auto 36px auto;
            line-height: 1.5;
            text-shadow: 0 2px 12px rgba(0,0,0,0.4);
        }

        /* Booking Bar (kompakt, im Hero) */
        .booking-bar {
            display: grid;
            grid-template-columns: 2fr 1.4fr 1.4fr 1.3fr auto;
            gap: 0;
            background: white;
            border-radius: 14px;
            padding: 10px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
            max-width: 980px;
            margin: 0 auto;
            align-items: center;
        }

        .booking-bar-field {
            padding: 8px 14px;
            border-right: 1px solid var(--gray-200);
            text-align: left;
        }

        .booking-bar-field:last-of-type {
            border-right: none;
        }

        .booking-bar-field label {
            display: block;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .booking-bar-field select,
        .booking-bar-field input {
            width: 100%;
            border: none;
            background: transparent;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--gray-700);
            padding: 0;
            font-family: inherit;
            cursor: pointer;
            outline: none;
        }

        .booking-bar-cta {
            background: var(--primary);
            color: white;
            border: none;
            padding: 16px 28px;
            border-radius: 980px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
            transition: background 0.2s, transform 0.1s;
            white-space: nowrap;
            margin-left: 8px;
        }

        .booking-bar-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        @media (max-width: 900px) {
            .hero-pro { min-height: auto; padding: 60px 0 80px 0; }
            .hero-pro-title { font-size: 2rem; }
            .hero-pro-subtitle { font-size: 1rem; }
            .booking-bar {
                grid-template-columns: 1fr;
                padding: 16px;
                gap: 8px;
            }
            .booking-bar-field {
                border-right: none;
                border-bottom: 1px solid var(--gray-200);
                padding: 10px 14px;
            }
            .booking-bar-field:nth-last-of-type(2) {
                border-bottom: none;
            }
            .booking-bar-cta {
                margin-left: 0;
                margin-top: 8px;
                padding: 14px 20px;
            }
        }

        /* USP Row */
        .usp-row {
            background: white;
            padding: 50px 0;
            border-bottom: 1px solid var(--gray-100);
        }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

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

        .usp-icon {
            font-size: 2rem;
            margin-bottom: 8px;
        }

        .usp-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--gray-700);
            margin-bottom: 2px;
        }

        .usp-desc {
            font-size: 0.8rem;
            color: var(--gray-500);
        }

        @media (max-width: 768px) {
            .usp-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .usp-row { padding: 32px 0; }
        }

        /* Booking Section */
        .booking-section {
            padding: 60px 0 80px 0;
            background: var(--gray-50);
        }

        .booking-section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #111827;
            text-align: center;
            margin-bottom: 6px;
        }

        .booking-section-subtitle {
            text-align: center;
            color: var(--gray-500);
            font-size: 1rem;
            margin-bottom: 32px;
        }

        .booking-form-wrapper {
            max-width: 720px;
            margin: 0 auto;
        }

        .booking-form-wrapper .booking-form-card {
            max-width: none;
            width: 100%;
        }

        /* Hero Intro Section (legacy, not used) */
        .hero-intro {
            background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
            padding: 60px 0 30px 0;
            text-align: center;
        }

        .hero-intro h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #111827;
            margin-bottom: 12px;
            line-height: 1.2;
        }

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

        .hero-intro-subtitle {
            font-size: 1.1rem;
            color: var(--gray-500);
            max-width: 700px;
            margin: 0 auto 20px auto;
        }

        .hero-trust-badge-center {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #fff8e1;
            color: #5a4500;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid #ffe082;
        }

        .hero-trust-badge-center .stars {
            color: #f9a825;
            font-size: 1rem;
            letter-spacing: 1px;
        }

        .hero-trust-badge-center strong {
            color: var(--primary);
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .hero-intro { padding: 40px 0 20px 0; }
            .hero-intro h1 { font-size: 1.6rem; }
            .hero-intro-subtitle { font-size: 0.95rem; }
        }

        /* Locations Section */
        .locations-section {
            padding: 30px 0 60px 0;
            background: white;
        }

        .locations-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #111827;
            text-align: center;
            margin-bottom: 6px;
        }

        .locations-subtitle {
            text-align: center;
            color: var(--gray-500);
            font-size: 1rem;
            margin-bottom: 36px;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .location-card {
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
        }

        .location-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.08);
        }

        .location-image {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .location-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .location-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--primary);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .location-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .location-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 4px;
            gap: 12px;
        }

        .location-header h3 {
            font-size: 1.35rem;
            color: #111827;
            font-weight: 700;
            margin: 0;
        }

        .location-header h3 span {
            color: var(--primary);
        }

        .location-price {
            background: #e8f5e9;
            color: #2e7d32;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 700;
            white-space: nowrap;
        }

        .location-address {
            color: var(--gray-500);
            font-size: 0.9rem;
            margin-bottom: 16px;
        }

        .location-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
            flex: 1;
        }

        .location-features li {
            padding: 6px 0;
            color: var(--gray-700);
            font-size: 0.92rem;
            line-height: 1.5;
        }

        .location-cta {
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 980px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
            width: 100%;
            font-family: inherit;
        }

        .location-cta:hover {
            background: var(--primary-dark);
        }

        @media (max-width: 768px) {
            .locations-section { padding: 20px 0 40px 0; }
            .locations-title { font-size: 1.4rem; }
            .locations-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .location-image { height: 200px; }
        }

        /* Company Toggle */
        .company-toggle {
            background: #f0f7fa;
            padding: 12px 14px;
            border-radius: 10px;
            margin-bottom: 12px;
            border: 1px solid #d4e8f0;
        }

        .company-toggle label {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0;
            font-size: 0.9rem;
            color: var(--gray-700);
        }

        /* Section Titles (shared) */
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #111827;
            text-align: center;
            margin-bottom: 8px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray-500);
            font-size: 1rem;
            margin-bottom: 40px;
        }

        /* Gallery Tabs */
        .gallery-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 32px;
        }
        .gallery-tab {
            padding: 10px 24px;
            border-radius: 50px;
            border: 2px solid #e5e7eb;
            background: white;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            color: #6b7280;
        }
        .gallery-tab:hover {
            border-color: #0071e3;
            color: #0071e3;
        }
        .gallery-tab.active {
            background: #0071e3;
            border-color: #0071e3;
            color: white;
        }
        .gallery-panel { display: none; }
        .gallery-panel.active { display: block; }

        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
            background: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 220px;
            gap: 12px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .gallery-item-large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

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

        .gallery-label {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: rgba(0,0,0,0.6);
            color: white;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 180px;
            }
            .gallery-item-large {
                grid-column: span 2;
                grid-row: span 1;
            }
            .gallery-section { padding: 50px 0; }
            .section-title { font-size: 1.5rem; }
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 8px;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 3rem;
            cursor: pointer;
            line-height: 1;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 0;
            background: var(--primary-light);
        }

        .testimonials-header {
            text-align: center;
            color: var(--gray-700);
            font-size: 1rem;
            margin-bottom: 40px;
        }

        .testimonials-header .big-stars {
            color: #f9a825;
            font-size: 1.5rem;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 8px;
        }

        .testimonials-header strong {
            color: var(--primary);
            font-size: 1.1rem;
        }

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

        .testimonial-card {
            background: white;
            padding: 24px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
        }

        .testimonial-stars {
            color: #f9a825;
            font-size: 1rem;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .testimonial-text {
            color: var(--gray-700);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 16px;
            flex: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid var(--gray-100);
        }

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

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--gray-700);
            font-size: 0.9rem;
        }

        .testimonial-source {
            color: var(--gray-500);
            font-size: 0.8rem;
        }

        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .testimonials-section { padding: 50px 0; }
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--gray-50);
        }

        .faq-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gray-900, #111827);
            text-align: center;
            margin-bottom: 8px;
        }

        .faq-subtitle {
            text-align: center;
            color: var(--gray-500);
            font-size: 1rem;
            margin-bottom: 40px;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 12px;
            border: 1px solid var(--gray-200);
            overflow: hidden;
            transition: box-shadow 0.2s;
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .faq-item summary {
            padding: 20px 24px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray-700);
            cursor: pointer;
            list-style: none;
            position: relative;
            padding-right: 50px;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 400;
            transition: transform 0.2s;
        }

        .faq-item[open] summary::after {
            content: '−';
        }

        .faq-item[open] summary {
            color: var(--primary);
        }

        .faq-item p {
            padding: 0 24px 20px 24px;
            color: var(--gray-500);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .faq-section { padding: 50px 0; }
            .faq-title { font-size: 1.5rem; }
            .faq-item summary { padding: 16px 20px; padding-right: 45px; font-size: 0.95rem; }
            .faq-item p { padding: 0 20px 16px 20px; }
        }
