/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f8f8;
}

h1, h2 {
    font-family: 'Josefin Slab', serif;
    color:white; /* white */
    text-align: center;
}

/* Hero Section */
.hero-about {
    background-image: url('assets/images/4.jpg');
    background-size: cover;
    background-position: center center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color:rgba(0, 0, 0, 0.384);
    text-align: center;
}

.hero-about h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color:white; 
}

.hero-about p {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.548); /* Light cream color */
}

/* About Section */
.about-section {
    padding: 50px 20px;
    background-color: #fff;
    color: #4b4b4b;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    color:#e57373;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.2rem;
    color: #7e7e7e;
    margin-bottom: 30px;
}

/* Values Section */
.about-values {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.value-card {
    width: 30%;
    background-color: #f3f3f3;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5rem;
    color: #d28ba3;
    margin-bottom: 10px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #4b4b4b;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 1rem;
    color: #7e7e7e;
}

/* Team Section */
.team-section {
    padding: 50px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #e57373;
    margin-bottom: 20px;
}

.team-section p {
    font-size: 1.2rem;
    color: #7e7e7e;
    margin-bottom: 30px;
}

.team-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-card {
    width: 30%;
    margin-bottom: 30px;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 1.5rem;
    color: #4b4b4b;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 1rem;
    color: #7e7e7e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-about h1 {
        font-size: 2.5rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .team-card {
        width: 45%;
    }

    .value-card {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .hero-about h1 {
        font-size: 2rem;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .team-card {
        width: 80%;
    }

    .value-card {
        width: 80%;
    }
}
