/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--color-sfondo) 0%, var(--color-contenuto) 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--color-bianco);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
}

@media (max-width: 769px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Categories Section */
.categories-section {
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-sfondo);
    margin-bottom: 10px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-contenuto);
}

@media (max-width: 769px) {
    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }
}