        :root {
            --primary-color: #4a5d4d;
            --primary-light: #6b7e6e;
            --primary-dark: #394c3c;
            --secondary-color: #d0b69f;
            --secondary-light: #e0c9b5;
            --secondary-dark: #b29683;
            --accent-color: #a86b41;
            --text-color: #333;
            --text-light: #777;
            --light-bg: #f8f8f8;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0,0,0,0.05);
            --shadow-strong: 0 8px 30px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Raleway', sans-serif;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        p {
            font-weight: 400;
            font-size: 1.05rem;
            color: var(--text-light);
        }

        /* Mobile menu sliding animation */
        @media (max-width: 991px) {
            .container{
                overflow: hidden;
            }
            
            body.menu-open .navbar-toggler .toggler-icon span {
                background-color: var(--white);
            }
            
            /* Prevent body scrolling when menu is open */
            body.menu-open {
                overflow: hidden;
            }
        }
        
        .hero-section {
            position: relative;
            height: 50vh;
            min-height: 400px;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            background-color: var(--light-bg);
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://mhsvp.com/wp-content/themes/MHSVP/sr-hero.png');
            background-size: cover;
            background-position: center;
            z-index: 1;
            transform-origin: center;
            transition: transform 0.5s ease-out;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
            z-index: 2;
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            color: white;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .hero-heading {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-subtext {
            font-size: 1.2rem;
            font-weight: 400;
            color: #cacaca;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        
        .section {
            padding: 5rem 1rem;
        }



                .impressum-section {
            background-color: var(--white);
            position: relative;
        }
        
        .impressum-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background-color: rgba(208, 182, 159, 0.05);
            border-radius: 50%;
            z-index: -1;
        }
        
        .impressum-content {
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow);
            padding: 3rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .impressum-content::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 5px;
            background: linear-gradient(to bottom, var(--accent-color), var(--secondary-color));
        }
        
        .impressum-title {
            color: var(--primary-dark);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .impressum-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .section-heading {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            padding-left: 20px;
        }
        
        .section-heading::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        
        .section-heading:first-of-type {
            margin-top: 1.5rem;
        }
        
        .impressum-text {
            color: var(--text-light);
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        
        .contact-info {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 4px solid var(--secondary-color);
        }
        
        .contact-info h6 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            color: var(--text-color);
        }
        
        .contact-item i {
            color: var(--accent-color);
            width: 20px;
            margin-right: 10px;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, rgba(208, 182, 159, 0.1), rgba(168, 107, 65, 0.1));
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid rgba(168, 107, 65, 0.2);
        }
        
        .disclaimer-text {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
        }
        
        .back-link {
            display: inline-flex;
            align-items: center;
            background-color: var(--primary-color);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 2rem;
        }
        
        .back-link:hover {
            background-color: var(--primary-dark);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .back-link i {
            margin-right: 8px;
            transition: transform 0.3s ease;
        }
        
        .back-link:hover i {
            transform: translateX(-5px);
        }
        
        @media (max-width: 768px) {
            .impressum-content {
                padding: 2rem 1.5rem;
            }
            
            .impressum-title {
                font-size: 2rem;
                text-align: center;
            }
            
            .impressum-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .section-heading {
                font-size: 1.3rem;
            }
            
            .contact-item {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
            
            .contact-item i {
                margin-bottom: 5px;
            }
        }
