@charset "UTF-8";
/* CSS Document */
/* Hero Section */
.hero {
    text-align: center;
    background: #ffffff;
    padding: 60px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    color: #666;
}

/* Container */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
    padding-top: 0;
}

/* Section Styling */
.section {
    background: #fff;
    padding: 50px 70px; /* boosted padding for better breathing room */
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 2em;
    color: #222;
    margin-bottom: 15px;
}

/* Mission Section */
.mission {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mission-photo {
    flex: 1;
    max-width: 350px;
    border-radius: 8px;
    object-fit: cover;
}

.mission-text {
    flex: 2;
}

.mission-text p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

/* Founder Section */
.founder {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: nowrap;
}

.founder-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ddd;
    flex-shrink: 0;
}

.founder-bio {
    flex: 1;
}

.founder-bio p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

/* Features Section */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding-top: 10px;
}

.feature-box {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
}

.feature-box h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #111;
}

.feature-box p {
    font-size: 1em;
    color: #666;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 30px 25px;
    }

    .mission {
        flex-direction: column;
    }

    .founder {
        flex-direction: column;
        text-align: center;
    }

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

    .feature-box {
        flex: 1 1 100%;
    }
}

