/* --- Global Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Orbitron", sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* --- Header --- */
.header {
    width: 100%;
    background-color: rgba(0,0,0,0.85);
    border-bottom: 3px solid #00eaff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #00eaff;
    font-size: 24px;
    font-weight: bold;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    transition: color 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
    color: #00eaff;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    width: 100%;
    height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.35);
}

.hero-content h2 {
    font-size: 42px;
    color: #00eaff;
}

.hero-content p {
    margin-top: 8px;
    font-size: 18px;
    color: #cfcfcf;
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    background-color: #00eaff;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #008bbd;
}

/* --- FAQ Section --- */
.faq-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    width: 100%;
    max-width: 900px;
}

.faq-card {
    background-color: rgba(0,0,0,0.65);
    border: 2px solid #00eaff;
    border-radius: 14px;
    padding: 20px;
    width: 100%;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #00eaff;
}

.faq-card h3 {
    color: #00eaff;
    margin-bottom: 10px;
}

.faq-card p {
    font-size: 16px;
}

/* --- Footer --- */
footer {
    width: 100%;
    text-align: center;
    background-color: rgba(0,0,0,0.85);
    border-top: 3px solid #00eaff;
    padding: 20px 0;
    color: #ccc;
    font-size: 14px;
    margin-top: auto;
}
