/* ===== Mobile Menu ===== */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .main-navigation {
        display: none;
    }
    .mobile-menu-button {
        display: block;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .price-tables-container {
        flex-direction: column;
    }
    .price-table-wrapper {
        width: 100%;
    }
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 600px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .modulhaus-grid {
        grid-template-columns: 1fr;
    }
}