* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Container Styles */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 102;
    padding: 50px;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: none;
}

.header-container.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container.scrolled + .hamburger {
    color: #5D5D5D;
}

/* Hamburger Menu Styles */
.hamburger {
    font-size: 30px;
    cursor: pointer;
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 105;
    color: #5D5D5D;
}

.logo {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 103;
    width: 120px;
    height: auto;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 0;
    background-color: #ffffff;
    z-index: 103;
    transition: width 0.5s;
    padding-top: 60px;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    overflow-x: hidden;
    display: block;
}

.nav-menu a {
    padding: 15px 25px;
    text-decoration: none;
    font-size: 18px;
    color: #000000;
    display: block;
    transition: 0.3s;
}

/* Highlight active link */
.nav-menu a.active {
    background-color: #f1f1f1;
    color: #3B3B3C;
}

/* Shift only the first link down 50px when scrolled */
.header-container.scrolled + .hamburger + .nav-menu a:first-child {
    margin-top: 50px;
}

.nav-menu a:hover {
    color: #f1f1f1;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 20px;
}

/* Contact Section Styles */
.contact-section {
    max-width: 1400px;
    padding: 20px 15px;
    text-align: left; /* Keep left for content, override for specific elements */
}

.contact-section h1 {
    font-size: 3em;
    color: #000000;
    margin-bottom: 30px;
    text-align: center; /* Center the heading */
}

/* Legal Paragraphs Styles */
.legal-paragraphs {
    margin-left: 30px;
    margin-right: 30px;
}

.legal-paragraphs p {
    font-size: 1em;
    color: #000000;
    text-align: left;
    margin-bottom: 15px;
}

.legal-paragraphs p:last-of-type {
    margin-bottom: 0;
}

/* Legal Divider (Solid Black Line) */
.legal-paragraphs .legal-divider {
    border: 0;
    border-top: 2px solid #000000; /* Increased thickness from 1px to 2px */
    width: 100%; /* Spans the width of the text block */
    margin-top: 30px; /* Increased from 20px to 30px */
}

/* Footer Styles */
footer {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}

footer p {
    margin: 0;
}

.footer-links {
    margin: 0;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #e6e6e6;
}

.footer-links .instagram-icon {
    vertical-align: middle;
    width: 16px;
    height: 16px;
    transition: opacity 0.3s;
}

.footer-links a:hover .instagram-icon {
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-content {
        padding-top: 80px;
        padding-bottom: 10px;
    }

    .contact-section {
        padding: 15px 10px;
    }

    .contact-section h1 {
        font-size: 2.5em;
        margin-bottom: 20px;
    }

    .legal-paragraphs {
        margin-left: 15px;
        margin-right: 15px;
    }

    .legal-paragraphs p {
        font-size: 0.9em;
    }

    .legal-paragraphs .legal-divider {
        margin-top: 20px; /* Increased from 15px to 20px */
    }
}