#about {
    /* font-family: Arial, sans-serif; */
    background-color: #f4f6f8;
    color: #333;
}

/* About Us Section Styling */
.about-us {
    padding: 40px 20px;
    background: #ffffff;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: start;
}

.about-intro, .about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-section-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: start;
}

.about-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.about-list li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.about-list li:before {
    content: "•";
    color: #1e3a8a;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.about-text strong {
    color: #1e3a8a;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }

    .about-section-title {
        font-size: 1.5rem;
    }

    .about-intro, .about-text, .about-list li {
        font-size: 0.95rem;
    }
}