/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #000;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.navbar .navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    flex: 1;
}

.navbar-nav {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    flex: 2;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.navbar-nav .nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.1rem;
    text-align: center;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: #f39c12;
}

/* Header Section */
header {
    background: #111;
    text-align: center;
    padding: 100px 20px 40px;
}

header h1 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #bbb;
}

/* Accordion Styling */
.accordion {
    margin-top: 20px;
    background-color: transparent;
}

.accordion-item {
    background-color: #222;
    border: none;
}

.accordion-button {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background-color: #333;
    border: none;
}

.accordion-button:hover {
    background-color: #444;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background-color: #111;
}

/* List Styling */
.list-group {
    background: transparent;
}

.list-group-item {
    background-color: #111;
    border: 1px solid #333;
    color: #fff;
}

.list-group-item a {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
}

.list-group-item a:hover {
    color: #d35400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    background-color: #f39c12;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    margin-top: 10px;
}

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

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    background-color: #111;
    margin-top: 40px;
}

footer a {
    text-decoration: none;
    color: #f39c12;
    font-weight: 600;
}

footer a:hover {
    color: #d35400;
}

/* General Reset */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
