* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.hero {
    background: linear-gradient(#00000080, #00000080), url('../images/aboutusbackground.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 20px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    opacity: 0.95;
}

.features {
    padding: 20px 40px 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #60B0C6 0%, #457e8e 100%);
    color: white;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 6px #0000001a;
    border-top: 6px solid #3b6c79;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px #00000026;
}

.feature-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background: #ffffff33;
    padding: 12px;
    border-radius: 8px;
}

.feature-card h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.feature-card a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.feature-card a:hover {
    gap: 12px;
}

.feature-card a::after {
    content: '→';
    font-size: 1.2em;
}

.mission {
    background: white;
    padding: 60px 20px;
}

.mission h2 {
    font-size: 2em;
    text-align: center;
    color: #377586;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-subtitle {
    text-align: center;
    color: #377586;
    font-size: 1.1em;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #97a1a98f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-icon {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    flex-shrink: 0;
}

.mission-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mission-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px #0000001a;
}

.mission-card h3 {
    font-size: 16px;
    color: #377586;
    margin-bottom: 15px;
    font-weight: 600;
}

.mission-card p {
    color: #377586;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }
}