/* about.css */

.about-page {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.7;
}

.about-page .container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-page h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0056b3;
    text-align: center;
    font-weight: bold;
}

.about-page h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0077cc;
    border-left: 4px solid #0077cc;
    padding-left: 10px;
}

.about-page p {
    margin-bottom: 18px;
     text-align: justify;
}

.about-page ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.about-page ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.about-page a {
    color: #0077cc;
    text-decoration: none;
}

.about-page a:hover {
    text-decoration: underline;
}
/* Mobile Responsiveness */
@media (max-width: 767px) {
    .about-page {
        padding: 70px 15px;
    }

    .about-page h1 {
        font-size: 1.8em;
    }

    .about-page h2 {
        font-size: 1.5em;
    }

    .about-page p {
        font-size: 18px;
        text-align: justify;
    }
    .about-page p a {
        font-weight: bold;
    }

    .point li {
      font-size: 18px;
    }

    .about-page footer {
        font-size: 12px;
    }

    .about-page .container {
        padding: 0 15px;
    }
}
