/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 .container {
    width: 80%;
    margin: auto;
} 

h2{
    font-size: 30px;
    margin-bottom: 20px;
}

.contact-section {
    padding: 30px 0;
    text-align: center;
}
.address{
    text-align: left;
}
.address a{
 color: blue;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

 .map {
    width: 65%;
    height: 100%;
}

.map iframe {
    width: 100%;
    height: 300px;
    border: 0;
}
footer {
    background: #222;
    color: #fff;
    padding: 20px 0;
    text-align: left;
    margin-top: 20px;
}

.container {
    width: 90%;
    margin: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-content div {
    width: 30%;
}

footer a {
    color: #fff;
    text-decoration: none;
}

.links, .contact {
    text-align: center;
}

.copyright {
    background-color: white;
    color: black;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content div {
        width: 100%;
        margin-bottom: 20px;
    }

    .about p, .links ul, .contact p {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    footer {
        padding: 15px 0;
    }

    .footer-content div h3 {
        font-size: 18px;
    }

    .about p, .links ul, .contact p {
        font-size: 13px;
    }

    .copyright {
        font-size: 12px;
        padding: 10px;
    }
}