body {
    background: linear-gradient(to bottom right, #f0faff 0%, #7ad1ff 100%);
}


.contact-form-wrapper {
    padding: 3rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 107, 189, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* intl-tel-input */
.iti {
    width: 100%;
}


/* Contact Info Cards */
.contact-info {
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 107, 189, 0.2);
    height: fit-content;
}

.contact-info h3 {
    color: #1858c3;
    font-weight: 700;
    text-align: center;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(24, 88, 195, 0.05);
    border-radius: 0.75rem;
    border-left: 4px solid #1858c3;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 88, 195, 0.15);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #1858c3;
    color: white;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    color: #1858c3;
    font-weight: 600;
}

.contact-details p {
    margin-bottom: 0.25rem;
    color: #333;
}

.contact-link {
    color: #1858c3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0f4481;
    text-decoration: underline;
}

/* Call To Action Section */
.cta-section {
    background: linear-gradient(135deg, #1858c3 0%, #0f4481 100%);
    color: white;
}

.cta-section h2 {
    color: #76fdfc;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
}