/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
} */

body {
    background: #fff;
    color: #444;
    font-family: "Open Sans", sans-serif;
  }
.about-main{
    margin-top: 40px;
}
.about-section {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 50px;
   
}

.about-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.2rem;
}

.content-section {
    padding: 40px;
    color: #333;
}

.content-section h2 {
    color: #007bff;
    margin-bottom: 20px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

.team {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.team-member {
    background-color: white;
    border: 2px solid #007bff;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: #007bff;
    margin-bottom: 10px;
}

blockquote {
    border-left: 5px solid #007bff;
    margin: 20px 0;
    padding-left: 20px;
    font-style: italic;
    color: #555;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
