body {
    background-color: #000000; 
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
/* Header styling */
header {
    background-color: #0b0c10; 
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation styling */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}
footer {
    background-color: #000000; 
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 16px;
}

/* Contact page layout */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    gap: 12px; 
    padding: 40px 20px; 
}

/* Section titles (h2) */
.contact-container h2 {
    font-size: 26px;
    margin-top: 20px; 
    margin-bottom: 10px; 
    color: #ffffff;
    border-bottom: 2px solid whitesmoke;
    padding-bottom: 6px;
    width: fit-content;
}

/* Individual contact items */
.contact-item {
    margin-bottom: 8px; 
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 2px; 
    color: white;
}

.contact-item p {
    font-size: 17px;
    color: #d1d1d1;
    margin: 0;
}

/* Main navigation  */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center; 
    background-color: #0b0c10;
    padding: 10px 40px;
    gap: 20px;
}

/* Logo style */
.logo {
    height: 45px; 
    width: auto;
}

/* Navigation list styling */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

/* Navigation links */
.main-nav a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #66fcf1;
}
/* Footer logo */
.footer-logo {
    height: 45px; 
    width: auto;
    margin-top: 10px; 
}
/* Login icon */
.login-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.login-icon .icon {
    width: 30px;
    height: 30px;
    stroke: white;
    transition: stroke 0.3s ease;
}

.login-icon:hover .icon {
    stroke: #ffffff;
}
/* Footer links styling */
.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Footer disclaimer */
.footer-disclaimer {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.5;
    max-width: 800px;
    margin: 15px auto 0 auto;
    text-align: center;
}


