* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

header {
    height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('backg.png') no-repeat center center/cover;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #e82127;
    padding: 10px 20px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e82127;
}

.hero {
    text-align: center;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 5rem;
    color: #fff;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeIn 1.5s ease-in-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeIn 2s ease-in-out;
}

.cta-button {
    background: #e82127;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.33rem;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #c41a1f;
    transform: translateY(-3px);
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #e82127;
}

section p {
    margin-bottom: 1rem;
    color: #555;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

form input,
form textarea {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
    border-color: #e82127;
    outline: none;
}

form button {
    background: #e82127;
    color: #fff;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background: #c41a1f;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: #333;
    color: #fff;
}

footer p {
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General FAQ Section Styling */
#faq {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.faq-item h3 {
    color: #e82127;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Styling for Ordered Lists (<ol>) */
.faq-item ol {
    list-style-type: decimal;
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #555;
}

.faq-item ol li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Styling for Unordered Lists (<ul>) */
.faq-item ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #555;
}

.faq-item ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Optional: Add a hover effect to list items */
.faq-item ol li:hover,
.faq-item ul li:hover {
    color: #e82127;
    cursor: default;
}


.scroll-indicator {
    text-align: center;
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 1.5rem;
    color: #fff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem; /* Smaller font size for mobile */
        margin-bottom: 0.5rem;
    }

    .hero p {
        font-size: 1.25rem; /* Smaller font size for mobile */
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.5rem 1rem; /* Smaller button for mobile */
    }

    .nav-links {
        display: none; /* Hide the nav links */
    }

    .scroll-indicator {
        display: none;
    }
}