        /* CTA Section */
        .cta-section {
            padding: 8rem 3rem;
            background: linear-gradient(135deg, #003d82, #004a99);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 1.6rem;
            font-weight: 700;
            letter-spacing: -1.5px;
        }

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            line-height: 1.6;
        }

        /* Toggle Switch */
        .toggle-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin: 3rem 0;
        }

        .toggle-switch {
            position: relative;
            width: 80px;
            height: 40px;
            display: inline-block;
            cursor: pointer;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .toggle-slider::before {
            content: '';
            position: absolute;
            height: 32px;
            width: 32px;
            left: 4px;
            bottom: 2px;
            background: white;
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .toggle-switch input:checked + .toggle-slider {
            background: #22c55e;
            border-color: #22c55e;
        }

        .toggle-switch input:checked + .toggle-slider::before {
            transform: translateX(40px);
            box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
        }

        .toggle-switch:hover .toggle-slider {
            box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1);
        }

        .toggle-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            letter-spacing: 0.3px;
        }

        /* Contact Form */
        .contact-form-wrapper {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 3rem;
        }

        .contact-form-wrapper.active {
            max-height: 1200px;
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            text-align: left;
            animation: scaleIn 0.5s ease-out;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

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

        .form-group label {
            display: block;
            color: #1a1a1a;
            font-weight: 600;
            margin-bottom: 0.6rem;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid #e5e5e5;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s;
            background: #fafbfc;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #003d82;
            background: white;
            box-shadow: 0 0 0 4px rgba(0, 61, 130, 0.1);
        }

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

        .checkbox-group {
            margin-top: 1rem;
        }

        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            cursor: pointer;
            font-weight: 400;
        }

        .checkbox-label input[type="checkbox"] {
            width: auto;
            margin-top: 0.2rem;
            cursor: pointer;
            width: 20px;
            height: 20px;
        }

        .checkbox-label span {
            color: #5a5a5a;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .btn-submit {
            width: 100%;
            background: linear-gradient(135deg, #003d82, #004a99);
            color: white;
            padding: 1.2rem 2rem;
            border: none;
            border-radius: 6px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .btn-submit:hover {
            background: linear-gradient(135deg, #002d61, #003d82);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 61, 130, 0.3);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

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

            .contact-form {
                padding: 2rem 1.5rem;
            }

            .toggle-container {
                flex-direction: column;
                gap: 1rem;
            }
        }
