/* Modern reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background-color: #000000;
    color: #FF6B00;
    line-height: 1.6;
    padding: 20px;
}

/* Container styles */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.brand {
    font-size: 1.2rem;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #FF6B00;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
}

/* Main content styles */
.hero {
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.biohazard-icon {
    width: 250px;
    height: 250px;
    float: right;
}

.description {
    font-size: 20px;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.button {
    padding: 10px 20px;
    color: #FF6B00;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #FF6B00;
    color: #000000;
    text-decoration: underline;
}

/* Features section */
.features {
    margin-bottom: 60px;
}

.feature {
    margin-bottom: 30px;
}

.feature-header {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-description {
    color: #FF6B00;

}

/* Footer styles */
.footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    text-decoration: underline;
}

.footer-link {
    color: #FF6B00;
    text-decoration: none;
    font-size: 20px;

}

.footer-link:hover {
    opacity: 1;
}

.copyright {
    font-size: 15px;             /* Slightly smaller than main content */
    color: #FF6B00;                /* Matches site's orange theme */
    opacity: 0.8;                  /* Subtle transparency */
}

.copyright span {
    display: block;                /* Stacks copyright lines vertically */
    margin-bottom: 10px;           /* Space between lines */
}

.rights-reserved {
    font-size: 15px;             /* Even smaller text for legal notice */
    margin-top: 5px;               /* Space above legal text */
    opacity: 0.8;                  /* More transparent than copyright text */
}