.hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    text-align: center;
    padding: 140px 20px 100px;
}

.hero h1 {
    font-weight: 700;
    font-size: 2.8rem;
}

.hero p {
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Content */
.content-section {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 50px;
    margin: -60px auto 100px;
    max-width: 1000px;
}

.content-section h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
}

.content-section h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 30px;
}

.content-section p,
.content-section ul {
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 10px;
}

.content-section ul li {
    margin-bottom: 8px;
}