/* Contact Section Styles */
.final-cta {
    background: #F5E6D3;
    padding: 80px 0;
}

.final-cta h2 {
    color: #012169;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.final-cta-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cta-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-card h3 {
    color: #012169;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.info-card p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.info-card a {
    color: #CF142B;
    text-decoration: none;
    font-weight: 500;
}

.info-card a:hover {
    text-decoration: underline;
}

.info-card small {
    font-size: 0.85rem;
    color: #999;
}

.cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.feature-item {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    border-left: 3px solid #012169;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: left;
}

.cta-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cta-form-card h3 {
    color: #012169;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-form button {
    width: 100%;
    background: #CF142B;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-form button:hover {
    background: #012169;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1,33,105,0.3);
}

.required {
    color: #CF142B;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
}