.hero {
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.8;
}

.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 80px 20px;
    flex-wrap: wrap;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    width: 300px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #4da3ff;
}

.card h2 {
    margin-bottom: 10px;
}

.why {
    text-align: center;
    padding: 80px 20px;
    max-width: 800px;
    margin: auto
}

.why h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.resources {
    padding: 100px 20px;
    text-align: center;
}

.resources h2 {
    font-size: 38px;
    margin-bottom: 50px;
}

.resource-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.resource-card {
    width: 350px;
    padding: 30px;
    border-radius: 18px;
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-8px);
    border-color: #4da3ff;
    box-shadow: 0 0 25px rgba(77,163,255,0.2);
}

.resource-card h3 {
    margin-bottom: 15px;
    color: #4da3ff;
}

.resource-card h3.status-label {
    color: #CB4846;
}


.resource-card p {
    opacity: 0.8;
    line-height: 1.7;
}

.cta {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0b0f1a, #111a2e);
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}