/* Reset and base styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

/* Header Styling */
header {
    text-align: center;
    background-color: #2b6777;
    color: #fff;
    padding: 2em 1em;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 0.2em;
    animation: fadeInDown 1s ease;
}

header p {
    font-size: 1.2em;
    animation: fadeInDown 1s ease 0.3s;
}

/* Main Content Styling */
main {
    padding: 2em;
    max-width: 900px;
    margin: 0 auto;
}

/* Feature Section */
.feature {
    margin-bottom: 2em;
}

.feature h2, .mission h2 {
    font-size: 2em;
    color: #2b6777;
    margin-bottom: 0.5em;
    text-align: center;
}

.feature p, .mission p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 1.5em;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: space-around;
}

/* Card Styling */
.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 270px;
    padding: 1.5em;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.card h3 {
    color: #2b6777;
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

.card p {
    font-size: 1em;
    color: #666;
}

/* Mission Section Styling */
.mission {
    background-color: #e3f2fd;
    border-radius: 8px;
    padding: 1.5em;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 1em;
    background-color: #2b6777;
    color: #fff;
    margin-top: 2em;
    font-size: 1.1em;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    animation: fadeInUp 1s ease;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styling */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .feature h2, .mission h2 {
        font-size: 1.8em;
    }

    .feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }

    main {
        padding: 1em;
    }
}
