/*=========================
ABOUT-US PAGE STYLE start
=========================*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #ece9e6, #ffffff);
    color: #333;
    line-height: 1.6;
}

.about-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-container h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.about-container .intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.content h2 {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 10px;
}

.content p {
    margin: 10px 0;
    font-size: 1rem;
    color: #333;
}

.content ul {
    margin: 10px 0 20px;
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 8px;
    list-style-type: disc;
}

.about-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .index-container {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        align-items: center;
    }

    .alert-info {
        max-width: 90%;
    }
}
/*=====================
ABOUT-US PAGE STYLE end
========================*/