/* --- Hero Section --- */
.hero-section {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1920x1080/222/FFF?text=Background') no-repeat center center/cover;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #a00;
}