/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #dddddd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Wrapper */
.main-wrapper {
    background-color: #dddddd;
    min-height: calc(100vh - 80px);
}

.content-with-sidebar {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.main-content-area {
    flex: 1;
}

/* Age Verification Section */
.age-verification-section {
    padding: 40px 0;
}

.age-verification-box {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Sidebar */
.sidebar {
    flex-shrink: 0;
    width: 280px;
    padding-top: 40px;
}

.sidebar-box {
    background-color: transparent;
    padding: 0;
}

.sidebar-title {
    font-size: 22px;
    font-weight: 700;
    color: #01469c;
    padding-bottom: 10px;
}

.city-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-links li {
    margin-bottom: 0;
}

.city-links li a {
    color: rgb(1, 70, 156);
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 12px 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.city-links li a:hover {
    color: #01469c;
    border-left-color: #01469c;
    padding-left: 10px;
}

.age-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.age-title {
    font-size: 28px;
    font-weight: 700;
    color: #00000;
    margin-bottom: 15px;
}

.age-text {
    font-size: 14px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
}

.age-text a {
    color: #01469c;
    text-decoration: none;
}

.age-text a:hover {
    text-decoration: underline;
}

.yes-btn {
    display: inline-block;
    background-color: #28a745;
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 17px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.yes-btn:hover {
    background-color: #218838;
}

.no-link {
    color: #666;
    text-decoration: underline;
    font-size: 13px;
    display: block;
    margin-top: 10px;
}

.no-link:hover {
    color: #333;
    text-decoration: underline;
}

/* Main Content - Hidden by Default */
.main-content.hidden {
    display: none;
}

/* Header */
.header {
    background-color: #132439;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-link {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #01469c;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: #132439;
    padding: 20px 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0 20px;
}

.mobile-menu ul li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

/* Main Content Section */
.content-section {
    padding: 0 0 60px 0;
}

.content-section h1 {
    color: #01469c;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
}

.content-section p {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Footer */
.footer {
    background-color: #132439;
    color: #ffffff;
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav {
    display: flex;
    gap: 25px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #01469c;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .content-with-sidebar {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        padding-top: 20px;
		padding-bottom: 30px;
        order: 2;
    }

    .main-content-area {
        order: 1;
    }

    .content-section h1 {
        font-size: 24px;
    }

    .content-section p {
        font-size: 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .age-verification-box {
        padding: 30px 20px;
    }

    .age-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .age-title {
        font-size: 20px;
    }

    .age-verification-box h2 {
        font-size: 24px;
    }

    .yes-btn {
        padding: 20px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 30px 20px;
    }

    .content-section h1 {
        font-size: 22px;
    }

    .logo {
        height: 40px;
    }
}