html {
  scroll-padding-top: 150px; /* height of sticky header */
}
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: #222; /* Dark gray background */
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap; /* Allow content to wrap on smaller screens */
}

.header-content img {
    width: 50px;
}

.header-content h1 {
    margin: 0;
    font-size: 2em; /* Smaller font size for mobile */
    color: #FE1F1F; /* Updated Red text */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif; /* Classic serif font for heading */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center; /* Center the menu */
    gap: 15px; /* Reduced gap for mobile */
    flex-wrap: wrap; /* Allow menu items to wrap on smaller screens */
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #44B9FF; /* Updated Blue text */
    font-weight: bold;
    font-size: 1em; /* Smaller font size for mobile */
    transition: color 0.3s, transform 0.3s;
}

nav ul li a:hover {
    color: #FE1F1F; /* Red on hover */
    transform: scale(1.1);
}

a {
    color: #44B9FF; /* Updated Blue text for all links */
    text-decoration: none;
}

a:hover {
    color: #FE1F1F; /* Red on hover */
}

.container {
    max-width: 800px;
    width: calc(100% - 40px); /* Adjusted width for padding */
    padding: 20px;
    background-color: #333; /* Dark gray background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin: 20px;
    border-radius: 8px; /* Rounded corners */
    text-align: left;
}

h2 {
    color: #FE1F1F; /* Updated Red text */
    font-family: 'Cinzel', serif; /* Classic serif font for heading */
}

hr {
    border: 0;
    height: 1px;
    background: #44B9FF; /* Updated Blue horizontal line */
    margin: 20px 0;
}

.accordion {
    background-color: #444; /* Darker gray background */
    color: #fff; /* White text */
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1em; /* Increased font size */
    transition: background-color 0.3s ease;
    margin-top: 10px; /* Added margin for spacing */
}

.accordion:hover {
    background-color: #555; /* Slightly lighter gray on hover */
}

.accordion.active {
    background-color: #FE1F1F; /* Red when active */
}

.panel {
    padding: 0 10px;
    display: none;
    background-color: #333; /* Dark gray background */
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.btn {
    display: inline-block;
    background-color: #44B9FF; /* Updated Blue background */
    color: #fff; /* White text */
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    font-weight: bold;
}

.btn:hover {
    background-color: #FE1F1F; /* Red on hover */
    color: #fff; /* White text */
    transform: scale(1.05);
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 100vw;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}
