/* Reset some default browser styles */
body, h1, h2, p, ul, ol, li, button {
    margin: 0;
    padding: 0;
}

/* Base styles */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
}

/* Header styles */
.site-header {
    background-color: #222;
    color: #fff;
    padding: 10px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    max-width: 100px;
    height: auto;
    margin-right: 10px;
}

.site-logo h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    margin-top: 10px;
}

.site-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.site-nav li {
    margin-right: 20px;
}

.site-links a.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.site-links a.button:hover {
    background-color: #0056b3;
}

/* Section styles */
.section {
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 5px;
    margin-bottom: 20px;
    color: #fff;
}

/* Links styles */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Button styles */
button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Popup styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.popup-content {
    background-color: #1e1e1e;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    padding: 20px;
    max-width: 80%;
    text-align: center;
}

/* Close button in the popup header */
.close-button {
    background: none;
    border: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

/* Ordered list in the popup */
.popup-content ol {
    list-style: decimal inside;
    margin-left: 20px;
}

/* Call to Action button in the popup */
.popup-cta button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.popup-cta button:hover {
    background-color: #0056b3;
}

/* Footer styles */
.site-footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Additional CSS rules can be added for other elements as needed */
