/* ------------------------------
   GLOBAL
--------------------------------*/
.container {
    max-width: 1100px;
    margin: auto;
    padding: 2rem;
}

.big-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2rem;
}

/* ------------------------------
   HERO
--------------------------------*/
.about-hero {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
    border-radius: 0 0 30px 30px;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* ------------------------------
   ICON GRID
--------------------------------*/
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-icon-box {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.07);
    transition: 0.3s ease;
    
}

.about-icon-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

.about-icon-box img {
    width: 60px;
    margin-bottom: 1rem;
}

/* ------------------------------
   MISSION SECTION
--------------------------------*/
.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: center;
}

.mission-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.check-list {
    margin-top: 1rem;
}

.check-list li {
    margin-bottom: 0.6rem;
    padding-left: 1.4rem;
    position: relative;
}

.check-list li::before {
    content: "✔";
    color: #f7931e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ------------------------------
   TEAM
--------------------------------*/
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: #fff;
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.07);
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 1rem;
}

/* ------------------------------
   CTA
--------------------------------*/
.cta-section {
    background: #f7931e;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    color: #fff;
    margin: 4rem auto;
}

.cta-btn {
    background: #fff;
    color: #1e3c72;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 1.2rem;
    border-radius: 999px;
    font-weight: bold;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #ffd8a6;
}
