/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}  

body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
    text-align: center;
    background: linear-gradient(150deg, #ffc5c7, #ffffff);
}

.bg {
    padding: 20px 20px;
    background: linear-gradient(to right, #ffecd2, #fcb69f);
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    margin: 30px;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(to right, #ffecd2, #fcb69f);
    padding: 100px 20px;
}

.about-text {
    max-width: 800px;
    margin: auto;
}

.about-text h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.2em;
}

/* About Content */
.about-content {
    max-width: 800px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mission and Vision */
.mission-vision {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px auto;
    max-width: 800px;
}

.mission, .vision {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
}

/* Team Section */
.team {
    margin: 50px auto;
    text-align: center;
}
.team h2 {
    margin: 1em;
    font-size: 2em;
    /* color: ; */
}
.team-members {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: auto;
}

.member {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-text h1 {
        font-size: 2em;
    }
    .about-text p {
        font-size: 1em;
    }
    .about-text {
        margin-bottom: 70px;
    }
    .mission-vision {
        flex-direction: column;
        gap: 10px;
    }
    .team-members {
        flex-direction: column;
        align-items: center;
    }
    .member {
        width: 80%;
    }
}

@media screen and (max-width: 480px) {
    .about-hero {
        padding: 60px 10px;
    }
    .about-text {
        margin-bottom: 70px;
    }
    .about-text h1 {
        font-size: 1.8em;
    }
    .about-text p {
        font-size: 0.9em;
    }
    .member {
        width: 90%;
    }
}
