/* Hero Section Styles */
.hero-section {
    background-color: var(--color-secondary);
    color: #ffffff;
    padding: 4rem 0;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.hero-section .feature-list li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.hero-section .feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.hero-section .button-group {
    display: flex;
    gap: 1rem;
}

/* Responsive Anpassungen */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 3rem 0;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-section .button-group {
        flex-direction: column;
    }
} 