.contact-hero {
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f6f8fd 0%, #f1f4f9 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
}

.contact-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.calendly-section {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    height: 1200px;
}

.contact-intro{
    margin-top:10px;
    margin-bottom:30px;
}

.contact-info {
    padding: 2rem;
}

.contact-table {
    width: 100%;
    margin-bottom: 3rem;
    border-collapse: collapse;
}

.contact-table th,
.contact-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.contact-table th {
    color: #666;
    font-weight: 500;
    width: 40%;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-icon:hover {
    background: #4a90e2;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .calendly-section {
        height: 500px;
    }
}