@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    padding: 0;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: inline-block;
    max-width: 600px;
    width: 100%;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

h1 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

h2 {
    color: #777;
    margin-bottom: 20px;
    font-weight: 400;
}

p {
    color: #555;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    text-decoration: none;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info a:hover {
    color: #000;
}

.contact-info img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text {
    display: inline-block;
}

.map {
    margin-top: 20px;
    width: 100%;
}

.map iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    .contact-info img {
        width: 48px;
        height: 48px;
        margin-right: 0;
    }
    .contact-info{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items:center;

        
    }
    .logo {
    max-width: 150px;
    margin-bottom: 20px;
}

    .contact-text {
        display: none;
    }

    .map iframe {
        height: 200px;
    }
}
