@charset "utf-8";
@import url("/webfonts/NotoSans_Regular/stylesheet.css");

.about-container {
	max-width: 1100px;
	margin: 140px auto;
	padding: 0 20px;
	font-family: "NotoSans Regular", sans-serif;
}

.about-hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    border-radius: 16px;
    margin-bottom: 50px;
}

.about-hero h1 {
    font-size: 3.2rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.about-hero .slogan {
    font-size: 1.35rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 2.1rem;
    color: #1e3c72;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.about-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: #e63946;
    border-radius: 2px;
}

.about-section p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.mission, .vision {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 6px solid #1e3c72;
}

.mission h3, .vision h3 {
    color: #1e3c72;
    margin-top: 0;
    font-size: 1.5rem;
}

/* Why List */
.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    padding: 12px 0 12px 35px;
    font-size: 1.08rem;
    position: relative;
    color: #333;
}

.why-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e63946;
    font-weight: bold;
    font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 { font-size: 2.4rem; }
    .mission-vision { grid-template-columns: 1fr; }
    
    .about-section h2 { font-size: 1.8rem; }
}