/* 8004 — Section styles */

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    position: relative;
    background-color: #050505;
}
#hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
#hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    font-weight: 300;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}
.content-section.alt-bg {
    background-color: #121212;
}
.content-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* Responsive hero + sections */
@media (max-width: 768px) {
    #hero { padding-top: 0; }
    #hero h1 { font-size: 2.8rem; }
    #hero p { font-size: 1.1rem; }
    .content-section { padding: 48px 0; }
}
