/* About_Us.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.about-us {
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    padding: 40px 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.about-us h1 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #222;
}

.about-us h2 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #444;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.about-us p {
    margin-bottom: 15px;
    text-align: justify;
}

@media (max-width: 600px) {
    .about-us {
        padding: 20px 15px;
        margin: 20px;
    }

    .about-us h1 {
        font-size: 1.5em;
    }

    .about-us h2 {
        font-size: 1.3em;
    }
}
