.cta-section {
    padding: 6rem 0;
    background: #f4f9fa; /* Light Teal background tint */
    font-family: 'Inter', -apple-system, sans-serif;
    color: #333333;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.cta-wrapper {
    background: #ffffff;
    border: 1px solid rgba(15, 82, 186, 0.06);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 10px 40px rgba(15, 82, 186, 0.04);
    box-sizing: border-box;
}

.cta-header-section {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-title {
    font-family: 'Poppins', -apple-system, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0b2240; /* Primary Deep Navy */
    margin: 0;
}

.cta-title span {
    color: #008080; /* Primary Teal */
}

.cta-subtitle {
    font-size: 1.05rem;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0b2240;
}

.form-control {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.85rem 1.1rem;
    font-size: 0.95rem;
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: #ffffff;
    color: #333333;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
    width: 100%;
}

.form-control:focus {
    border-color: #008080;
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23008080' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    background-size: 1.1rem;
    padding-right: 2.5rem;
}

.appointment-submit-btn {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: #008080; /* Teal primary */
    border: 2px solid #008080;
    color: #ffffff !important;
    text-align: center;
    text-decoration: none;
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.2);
    box-sizing: border-box;
}

.appointment-submit-btn:hover {
    background: #ffffff;
    color: #008080 !important;
    border-color: #008080;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.15);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }
    .cta-container {
        padding: 0 1.5rem;
    }
    .cta-wrapper {
        padding: 2.5rem 1.5rem;
    }
    .cta-title {
        font-size: 1.8rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
}