/* 
    File: styles/contact.css
    Author: Yash Balotiya
    Description: This file contains the styles for the contact page.
    Created on: 03/06/2025
    Last Modified: 03/06/2025
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

section {
    width: 70%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

.contactSection {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contactSection h3 {
    font-size: 30px;
    color: #042b8d;
}

.contactSection span {
    text-align: center;
    line-height: 24px;
}

.contactSection span a {
    color: #042b8d;
    text-decoration: none;
}

.map {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Responsiveness */
@media (max-width: 1200px) {
    .map {
        height: 380px;
    }
}

@media (max-width: 1013px) {
    .map {
        height: 390px;
    }
}

@media (max-width: 1000px) {
    section {
        width: 90%;
    }

    .map {
        height: 360px;
    }
}

@media (max-width: 872px) {
    .map {
        height: 370px;
    }
}

@media (max-width: 788px) {
    .map {
        height: 390px;
    }
}

@media (max-width: 680px) {
    section {
        flex-direction: column;
    }
}