/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    text-align: center;
    margin: 0;
    padding: 0;
    padding-top: 80px;
}

/* Prevent horizontal scrolling */
html,
body {
    width: 100%;
    overflow-x: hidden;
}

/* Ensure all content stays within the screen */
.container,
.content,
.faq,
.mobile-menu {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Navbar */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #222;
    padding: 15px 20px;
    /* Moved slightly left */
    position: fixed;
    width: 100%;
    top: 0;
    left: -40px;
    z-index: 1000;
}

/* Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #ffcc00;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ffffff;
}

/* Burger Menu (Hidden by Default) */
.burger-menu {
    font-size: 2em;
    color: #ffcc00;
    cursor: pointer;
    display: none;
    /* Hidden by default */
    margin-left: auto;
    /* Aligns it properly */
}

/* Sidebar Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #222;
    box-shadow: -4px 0px 10px rgba(0, 0, 0, 0.5);
    transition: right 0.4s ease-in-out;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

/* Close Button */
.close-menu {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2em;
    color: #ffcc00;
    cursor: pointer;
}

/* Mobile Menu Items */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: center;
}

.mobile-menu li {
    padding: 15px 0;
}

.mobile-menu li a {
    color: #ffcc00;
    text-decoration: none;
    font-size: 1.2em;
    display: block;
    transition: color 0.3s;
}

.mobile-menu li a:hover {
    color: #ffffff;
}

/* Active Sidebar */
.mobile-menu.active {
    right: 0;
}

/* Overlay Effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

/* Show Overlay */
.overlay.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 900px) {
    .nav-links {
        display: none !important;
        /* Hide regular navbar */
    }

    .burger-menu {
        display: block !important;
        /* Ensure it appears */
    }
}

/* Logo */
.logo img {
    height: 50px;
    cursor: pointer;
    margin-left: 60px;
}

/* Logo */
.logo img {
    height: 50px;
    cursor: pointer;
}

/* Header */
header {
    background: #1a1a1a;
    padding: 30px;
}

header h1 {
    font-size: 2.5em;
    color: #ffcc00;
}

/* Sections */
section {
    background: #1e1e1e;
    margin: 20px auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
}

h2 {
    color: #ffcc00;
}

/* Steps */
.step {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    text-align: left;
}

.step h3 {
    color: #ffcc00;
}

/* Daily Life Section */
.daily-life ul {
    list-style: none;
    padding: 0;
}

.daily-life ul li {
    font-size: 1.2em;
    margin: 10px 0;
}

html,
body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Main Content Should Expand to Push Footer Down */
main {
    flex: 1;
}

/* Fixed Footer */
footer {
    background: #222;
    color: #bbb;
    padding: 15px;
    text-align: center;
    width: 100%;
    position: relative;
    bottom: 0;
}