/* Start custom CSS */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #3a3a3a;
            line-height: 1.6;
            background: white;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(58, 58, 58, 0.6) 100%), 
                        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23b8956f;stop-opacity:1" /><stop offset="100%" style="stop-color:%238b7355;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23grad)" width="1200" height="600"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 6rem 2rem;
            min-height: 550px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero > * {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: clamp(36px, 8vw, 64px);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.5px;
        }

        .hero p {
            font-size: clamp(16px, 2.5vw, 20px);
            margin-bottom: 2.5rem;
            max-width: 700px;
            font-weight: 300;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            background: #d4af37;
            color: #1a1a1a;
            padding: 14px 45px;
            font-size: 15px;
            font-weight: 600;
            border: 2px solid #d4af37;
            border-radius: 0;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
        }

        .cta-button:hover {
            background: transparent;
            color: #d4af37;
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
        }

        /* Intro Section */
        .intro-section {
            background: white;
            padding: 4rem 2rem;
            text-align: center;
            border-bottom: 1px solid #e8e8e8;
        }

        .intro-section h2 {
            font-size: clamp(28px, 5vw, 42px);
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1a1a1a;
            letter-spacing: -0.5px;
        }

        .intro-section p {
            font-size: 17px;
            color: #666;
            max-width: 750px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 300;
        }

        /* Section */
        .section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section h2 {
            font-size: clamp(32px, 6vw, 44px);
            font-weight: 700;
            margin-bottom: 3.5rem;
            text-align: center;
            color: #1a1a1a;
            letter-spacing: -0.5px;
        }

        /* Features Grid */
        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            padding: 2.5rem;
            background: #fafafa;
            border: 1px solid #e8e8e8;
            border-radius: 2px;
            transition: all 0.4s ease;
            text-align: center;
        }

        .feature-card:hover {
            border-color: #d4af37;
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.12);
            background: white;
        }

        .feature-icon {
            font-size: 38px;
            margin-bottom: 1.25rem;
            display: block;
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #1a1a1a;
        }

        .feature-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* Form Section */
        .form-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 5rem 2rem;
        }

        .form-container {
            max-width: 500px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 0;
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
        }

        .form-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .form-header h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 0.75rem;
        }

        .form-header p {
            font-size: 14px;
            color: #999;
            font-weight: 300;
        }

        .form-group {
            margin-bottom: 1.75rem;
        }

        .form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: #3a3a3a;
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            font-size: 14px;
            background: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 0;
            color: #3a3a3a;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input::placeholder {
            color: #bbb;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            background: white;
            border-color: #d4af37;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .checkbox-group input[type="checkbox"] {
            width: 16px;
            height: 16px;
            margin-top: 4px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .checkbox-group label {
            font-size: 13px;
            color: #666;
            cursor: pointer;
            margin: 0;
            font-weight: normal;
            text-transform: none;
            letter-spacing: normal;
            line-height: 1.5;
        }

        .checkbox-group a {
            color: #d4af37;
            font-weight: 500;
        }

        .submit-btn {
            width: 100%;
            padding: 14px 24px;
            background: #d4af37;
            color: #1a1a1a;
            border: 2px solid #d4af37;
            border-radius: 0;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
        }

        .submit-btn:hover {
            background: transparent;
            color: #d4af37;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
        }

        /* Reviews Section */
        .reviews-section {
            background: #fafafa;
            padding: 4rem 2rem;
            border-top: 1px solid #e8e8e8;
            border-bottom: 1px solid #e8e8e8;
        }

        .reviews-section h2 {
            font-size: clamp(32px, 6vw, 44px);
            font-weight: 700;
            margin-bottom: 3.5rem;
            text-align: center;
            color: #1a1a1a;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.75rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .review-card {
            background: white;
            padding: 2rem;
            border: 1px solid #e8e8e8;
            border-radius: 2px;
            transition: all 0.4s ease;
            text-align: center;
        }

        .review-card:hover {
            border-color: #d4af37;
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.12);
            background: white;
        }

        .stars {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: #f5f5f5;
            border: 1px solid #e8e8e8;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            color: #d4af37;
            font-size: 14px;
            font-weight: 700;
        }

        .review-text {
            font-size: 14px;
            color: #666;
            margin-bottom: 1.75rem;
            line-height: 1.8;
            min-height: 100px;
        }

        .reviewer-name {
            font-weight: 600;
            color: #1a1a1a;
            font-size: 14px;
            margin-bottom: 0.5rem;
        }

        .reviewer-title {
            font-size: 12px;
            color: #999;
            font-weight: 500;
        }

        /* Why Choose Section */
        .why-choose {
            background: white;
            padding: 4rem 2rem;
        }

        .why-choose .section {
            padding: 0;
        }

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

        .benefit-item {
            padding: 2.5rem;
            background: #fafafa;
            border: 1px solid #e8e8e8;
            display: flex;
            gap: 1.5rem;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            border-color: #d4af37;
            background: white;
        }

        .benefit-check {
            color: #d4af37;
            font-weight: 700;
            font-size: 24px;
            flex-shrink: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
        }

        .benefit-item p {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* FAQ Section */
        .faq-section {
            padding: 4rem 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-section h2 {
            font-size: clamp(32px, 6vw, 44px);
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            color: #1a1a1a;
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid #e8e8e8;
            border-radius: 0;
            overflow: hidden;
            background: white;
        }

        .faq-question {
            padding: 1.75rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            color: #1a1a1a;
            background: #fafafa;
            border-bottom: 1px solid #e8e8e8;
        }

        .faq-question:hover {
            background: white;
            color: #d4af37;
        }

        .faq-answer {
            display: none;
            padding: 1.75rem;
            background: white;
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }

        .faq-answer.active {
            display: block;
        }

        .faq-toggle {
            font-size: 18px;
            font-weight: 300;
            color: #d4af37;
            line-height: 1;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #999;
            padding: 3.5rem 2rem;
            text-align: center;
        }

        footer p {
            margin-bottom: 1rem;
            font-size: 14px;
        }

        footer a {
            color: #d4af37;
            font-weight: 500;
        }

        footer strong {
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .features {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }

            .feature-card {
                padding: 1.75rem;
            }

            .feature-icon {
                font-size: 32px;
            }

            .feature-card h3 {
                font-size: 16px;
            }

            .feature-card p {
                font-size: 13px;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .benefits-list {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .form-container {
                padding: 2rem;
            }

            .hero {
                padding: 4rem 1.5rem;
                min-height: 450px;
            }

            .intro-section {
                padding: 2.5rem 1.5rem;
            }

            .section {
                padding: 2.5rem 1.5rem;
            }

            .form-section {
                padding: 3rem 1.5rem;
            }

            .reviews-section {
                padding: 2.5rem 1.5rem;
            }

            .why-choose {
                padding: 2.5rem 1.5rem;
            }

            .faq-section {
                padding: 2.5rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 3rem 1rem;
                min-height: 350px;
            }

            .hero h1 {
                font-size: clamp(28px, 7vw, 40px);
            }

            .cta-button {
                padding: 12px 30px;
                font-size: 13px;
                letter-spacing: 1px;
            }

            .features {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }

            .feature-card {
                padding: 1.25rem;
            }

            .feature-icon {
                font-size: 28px;
            }

            .feature-card h3 {
                font-size: 14px;
            }

            .feature-card p {
                font-size: 12px;
            }

            .form-container {
                padding: 1.75rem;
            }

            .submit-btn {
                padding: 12px 18px;
                font-size: 12px;
            }

            .benefit-item {
                padding: 1.5rem;
            }

            .faq-question {
                padding: 1.25rem;
            }

            .faq-answer {
                padding: 1.25rem;
            }
        }/* End custom CSS */