
/* ------------------------------
   GLOBAL STYLE
--------------------------------*/
body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans", Arial, sans-serif;
    background: #f7f7f7;
    color: #222;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    letter-spacing: -0.5px;
    color: #000;
}
.section-title h3 {
    font-size: 1.1rem;
    letter-spacing: -0.5px;
    color: #000;
}

.section-title .subtitle {
    font-size: 0.9rem;   /* smaller text */
    margin-top: -10px;   /* pulls it closer to the h2 */
    color: #666;         /* optional: softer color */
}

/* ------------------------------
   HERO SECTION
--------------------------------*/
.founder-hero {
    background: #111;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.founder-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.founder-hero .tagline {
    font-size: 1.2rem;
    opacity: 0.85;
}

/* ------------------------------
   MISSION SECTION
--------------------------------*/
.mission {
    padding: 10px 0;
    background: #fff;
}

/* ------------------------------
   STORY SECTION
--------------------------------*/
.story {
    padding: 80px 0;
    background: #f2f2f2;
}

/* ------------------------------
   PRESS BIO SECTION
--------------------------------*/
.press-bio {
    padding: 80px 0;
    background: #fff;
}

/* ------------------------------
   FOUNDER PHOTO + BIO
--------------------------------*/
.founder-photo {
    width: 100%;
    max-width: 260px;
    margin: auto;
    margin-bottom: 30px;
}

.founder-photo img {
    width: 100%;
    border-radius: 8px;
    background: #ddd;
}

.founder-bio {
    text-align: center;
    margin-bottom: 60px;
}

/* ------------------------------
   FOOTER
--------------------------------*/
.footer {
    text-align: center;
    padding: 40px 0;
    background: #111;
    color: #fff;
    font-size: 0.9rem;
    width: 100%;
    display: block;
}

.footer a {
    color: #fff;
    text-decoration: underline;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (min-width: 768px) {

    .founder-bio {
        max-width: 700px;
        margin: auto;
        margin-bottom: 80px;
    }

    .founder-photo {
        margin-bottom: 40px;
    }
}

