/* General */
body {
    font-family: montserrat;
    color: WHITE;
    background-color: rgb(0, 0, 0);
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    font-family: montserrat;
    color: antiquewhite;
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    position: relative;
    top: 0;
    z-index: 80;
}

#title {
    margin-top: 3%;
    letter-spacing: 5px;
    font-size: 50px;
}

#subtitle {
    margin-top: 1px;
    margin-bottom: 2%;
}

/* Content Styles */
.content-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

.faq-content {
    background: linear-gradient(to bottom, rgba(80, 250, 250, 0.1), rgba(0, 0, 0, 0.25));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 40px;
    margin-bottom: 100px;
}

.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    color: rgb(80, 250, 250);
    margin-bottom: 25px;
    font-size: 24px;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    background: rgba(80, 250, 250, 0.1);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(80, 250, 250, 0.2);
}

.faq-question span {
    font-size: 16px;
    font-weight: 500;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Styles */
#FooterContainer {
    z-index: 3000;
    position: fixed;
    width: 100%;
    bottom: 0;
}

#footer {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: rgb(255, 255, 255);
    padding: 20px 0;
}

#footerButton {
    margin-left: 5%;
    margin-bottom: 2%;
}

.footer-content {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.social-icons a {
    color: #333;
    text-decoration: none;
}

.links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.links a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.trademark {
    text-align: center;
    color: #000000;
    font-size: 0.9rem;
}

/* Fonts */
.montserrat-500 {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.montserrat-300 {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        padding: 0 15px;
    }
    
    .faq-content {
        padding: 20px;
    }
    
    .faq-section h2 {
        font-size: 20px;
    }
    
    .faq-question span {
        font-size: 14px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }

    .social-icons {
        gap: 30px;
    }
}