body {
    font-family: Arial, sans-serif;
    background-color: #e5e5e5;
    margin: 0;
    padding: 0;
}
.container {
    width: 80%;
    margin: auto;
    padding: 20px 0;
}
.card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.card img {
    width: 40%;
    border-radius: 10px;
}
.card-text {
    width: 55%;
    text-align: justify;
}
.title {
    font-size: 2em;
    font-weight: bold;
    color: #111;
    text-align: center;
}
.mission-vision {
    display: flex;
    justify-content: space-between;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.section {
    width: 48%;
    text-align: justify;
    padding: 10px;
}
.section h2 {
    color: #008CFF;
    text-align: center;
}
.section img {
    width: 50px;
    display: block;
    margin: 0 auto 10px;
}
.policy {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}
.policy h6 {
    text-align: center;
    color: #008CFF;
}
.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}
.policy-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.policy-item img {
    width: 50px;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .card {
        flex-direction: column;
        text-align: center;
    }
    .card-text, .card img {
        width: 100%;
    }
    .mission-vision {
        flex-direction: column;
        text-align: center;
    }
    .section {
        width: 100%;
        margin-bottom: 20px;
        text-align: justify;
    }
    .policy-grid {
        grid-template-columns: 1fr;
    }
}