body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

h1 {
    font-size: 2.5rem;
    color: #2d3e50;
    font-weight: bold;
}

h3 {
    color: #4b8f29;
    font-size: 1.75rem;
}

ul {
    list-style-type: none;
}

ul li {
    margin-bottom: 10px;
}

table {
    margin-top: 30px;
}

table th,
table td {
    text-align: center;
    vertical-align: middle;
}

table th {
    background-color: #4b8f29;
    color: #4b8f29;
    font-size: 1.2rem;
}

table td {
    background-color: #f1f1f1;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    margin-top: 50px;
}
/* General Styling for Mission and Vision Section */
.mission-section, .vision-section {
    padding: 20px;
    background-color: #2d3e50; /* Dark Green/Blue background */
    color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ffb84d; /* Yellow-orange color */
    margin-bottom: 15px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

img {
    border-radius: 10px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-section, .vision-section {
        margin-bottom: 20px;
    }
}
