
.cursive{
    font-family: cursive, Sans-serif ;
    font-size: 2em;
}


.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 3rem;
    color: #0a2740;
    font-weight: bold;
}

.about-header p {
    font-size: 1.2rem;
    color: #555;
}

/* Company Story Section */
.company-story {
    margin-bottom: 60px;
}

.company-story h2 {
    font-size: 2rem;
    color: #0a2740;
    margin-bottom: 20px;
}

.company-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Mission & Values */
.mission-values {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.mission h3, .values h3 {
    font-size: 1.8rem;
    color: #0a2740;
    margin-bottom: 10px;
}

.mission p, .values p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.values p {
    margin-bottom: 10px;
}

/* Meet the Team */
.meet-the-team {
    text-align: center;
    margin-bottom: 60px;
}

.meet-the-team h2 {
    font-size: 2rem;
    color: #0a2740;
    margin-bottom: 20px;
}

.team-member-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
    margin-top: 20px;
}

.team-member img {
    width: auto;
    height: 20vh;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #ff9800;
    transition: transform 0.3s;

}

.team-member img:hover {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: #0a2740;
}

.team-member p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Get in Touch */
.get-in-touch {

    margin-bottom: 60px;
}

.get-in-touch h2 {
    font-size: 2rem;
    color: #0a2740;
    margin-bottom: 20px;
}

.get-in-touch p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contactUs {
    font-size: 1.2rem;
    color: #ff9800;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contactUs:hover {
    color: #e68900;
}
section{
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 10px;
}