/* Section Layout */
.about-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Left Content */
.about-content {
    flex: 2;
    text-align: left;
}

/* Main Heading */
.about-content h1 {
    font-family: Roboto, sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: rgb(17, 29, 94);
    margin-bottom: 12px;
}

/* Section Headings */
.about-content h3 {
    font-family: Roboto, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgb(17, 29, 94);
    margin-top: 20px;
    margin-bottom: 8px;
}

/* Paragraphs */
.about-content p {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 10px;
}

/* Lists */
.about-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.about-content ul li {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    margin-bottom: 6px;
}

/* Right Image */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 6px;
}

/* Optional subtle divider */
.about-content h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: rgb(17, 29, 94);
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-image {
        margin-top: 20px;
    }
}
