/* Contact page */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item {
    width: 100%;
}

.contact-item i {
    font-size: 1.5rem;
    color: #6366f1;
    margin-top: 0.25rem;
}

.contact-iframe-wrapper {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-iframe-wrapper iframe {
    width: 100%;
    height: 721px;
    border: none;
    display: block;
}

.contact-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contact-item p {
    color: #64748b;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-iframe-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }
    .contact-iframe-wrapper iframe {
        height: 600px;
    }
}

@media (max-width: 480px) {
    .contact-iframe-wrapper {
        padding: 0 0.5rem;
    }
    .contact-iframe-wrapper iframe {
        height: 500px;
    }
}
