body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

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

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

.about-header h1 {
    font-size: 2.5em;
    color: #333;
}

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

.history, .vision, .values, .faculty, .testimonials {
    margin-bottom: 40px;
}

.history h2, .vision h2, .values h2, .faculty h2, .testimonials h2 {
    font-size: 2em;
    color: #007BFF;
    margin-bottom: 20px;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.faculty-member {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.faculty-member:hover {
    transform: scale(1.05);
}

.testimonial {
    background-color: #f9f9f9;
    border-left: 5px solid #007BFF;
    padding: 15px;
    margin: 10px 0;
}

.testimonial p {
    font-style: italic;
    color: #555;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}