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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header Styles */
header {
    background-color: #222222;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

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

.logo img {
    height: 46px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: rgba(255,255,255,0.1);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 200px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    margin-top: 5px;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #444;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown img {
    height: 30px;
    width: auto;
    cursor: pointer;
}

/* Main Content Layout */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    padding: 20px;
}

.content {
    flex: 1;
    background-color: #fff;
    padding: 20px;
}

.sidebar {
    width: 250px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    height: fit-content;
    position: sticky;
    top: 80px;
}

.sidebar h3 {
    margin-bottom: 15px;
    color: #222;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar ul li a:hover {
    color: #666;
}

/* Content Styles */
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #222;
}

h2 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #222;
}

h3 {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #222;
}

p {
    margin-bottom: 15px;
}

.content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 5px;
}

.cta-row {
    margin: 20px 0;
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: #d4af37;
    color: #222;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #b8941f;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    background-color: #222222;
    color: #fff;
    padding: 40px 20px 20px;
    margin-top: 50px;
}

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

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    transition: color 0.3s;
}

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

.footer-divider {
    border-top: 1px solid #444;
    margin: 30px 0;
}

.footer-18plus {
    text-align: center;
    margin: 20px 0;
}

.footer-18plus img {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.footer-warning {
    text-align: center;
    margin: 15px 0;
    font-size: 0.9em;
    color: #ccc;
}

.footer-email {
    text-align: center;
    margin-top: 20px;
    color: #ccc;
    font-size: 0.9em;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #d4af37;
    color: #222;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: background-color 0.3s;
    z-index: 999;
}

.scroll-to-top:hover {
    background-color: #b8941f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        position: static;
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav {
        justify-content: center;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
