body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f7fa;
    color: #333;
}
header {
    background: #ffffff;
    color: #333;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    color: #ff6b6b;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
nav {
    margin-top: 0.5rem;
}

nav a {
    color: #555;
    margin: 0 1rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: #f0f0f0;
}

nav a:hover {
    color: #fff;
    background: #ff6b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
}
.hero {
    background: linear-gradient(135deg, #ffd166 0%, #ff9a3c 100%);
    color: #333;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(255, 154, 60, 0.3);
    border-radius: 0 0 30px 30px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.mission {
    background: #ffffff;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 900px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.mission h3 {
    color: #06d6a0;
    margin-top: 0;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.mission h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #06d6a0;
    border-radius: 3px;
}

.mission p {
    line-height: 1.8;
    color: #555;
}
.featured {
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.featured h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #118ab2;
    padding-bottom: 0.5rem;
    text-align: center;
    position: relative;
}

.featured h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #118ab2;
    border-radius: 3px;
}
.card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    width: 280px;
    transition: all 0.4s ease;
    color: #333;
    border: 1px solid #f0f0f0;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #118ab2;
}

.card-img {
    height: 180px;
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.card-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover .card-img:before {
    opacity: 1;
}

.card-content {
    padding: 1.5rem;
}

.card h4 {
    margin-top: 0;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 600;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #666;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 8px;
}

.card-meta span i {
    color: #118ab2;
    margin-right: 5px;
}

.card p {
    margin: 0.8rem 0 1.2rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}
.btn {
    display: inline-block;
    width: 100%;
    padding: 0.8rem 0;
    background: #ff6b6b;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.btn:hover {
    background: #ff5252;
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.5);
    transform: translateY(-2px);
}
footer {
    background: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #eee;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.02);
}
@media (max-width: 700px) {
    .card-list {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 90%;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    nav a {
        margin: 0 0.5rem;
        padding: 0.2rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
}
