body {
    background-color: #121212;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding-top: 70px;
    min-height: 100vh;
    overflow-x: hidden;
    color: #e0e0e0;
}

.navbar {
    background-color: #1e1e1e;
    border-bottom: 1px solid #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: #e0e0e0;
    margin-right: 20px;
    font-size: 16px;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #00ffc3;
    font-weight: bold;
}

.section {
    padding: 60px 0;
    background-color: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
}

.section h2,
.section h3 {
    color: #ffffff;
    font-weight: 700;
}

.section p {
    color: #cccccc;
}

.card {
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.card:hover {
    transform: scale(1.03);
}

.btn-primary,
.custom-btn {
    background-color: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}




.btn-primary:hover,
.custom-btn:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

.page-footer {
    background-color: #1e1e1e;
    color: #ccc;
    padding: 40px 0 10px;
    font-size: 15px;
}

.page-footer h5 {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

.custom-link {
    color: #00ffc3;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.custom-link:hover {
    color: #1db954;
    text-decoration: underline;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer a:hover {
    color: #ffffff;
}

#tutorials {
    padding: 40px 20px;
    background-color: #161616;
}

.tutorial-item {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    max-width: 640px;
}
.page-footer .row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.tutorial-item h3 {
    color: #00ffc3;
}

.button-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .tutorial-item {
        max-width: 100%;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
    }

    .page-footer .row {
        text-align: center;
    }
}
/* Remove shadow/white gap between sections */
.section {
    box-shadow: none !important;
    border: none !important;
    background-color: #1a1a1a !important;
}

/* Fix button appearance */
.custom-btn {
    background-color: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-btn:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

/* Footer layout fix */
.page-footer .row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
}

/* Footer coloring fix */
.page-footer {
    background-color: #111 !important;
    padding: 40px 0;
    color: #ccc;
}

.footer-links a {
    color: #66ccff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

/* FAQ Accordion Dark Theme */
#faqAccordion .accordion-item {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

#faqAccordion .accordion-button {
    background-color: #222;
    color: #00d4ff;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    padding: 15px 20px;
}

#faqAccordion .accordion-button:hover {
    background-color: #2b2b2b;
    color: #00ffff;
}

#faqAccordion .accordion-button:not(.collapsed) {
    background-color: #2b2b2b;
    color: #00ffff;
    box-shadow: none;
}

#faqAccordion .accordion-collapse {
    background-color: #1a1a1a;
    color: #ddd;
}

#faqAccordion .accordion-body {
    padding: 15px 25px;
    line-height: 1.6;
    font-size: 15px;
    color: #ccc;
}

#faqAccordion a {
    color: #66ccff;
    font-weight: bold;
    text-decoration: none;
}

#faqAccordion a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Optional: Style the section heading */
#faq h2.text-info {
    color: #00ffff;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

/* Optional: Enhance notice box styling if inside accordion */
.notice-box {
    background-color: #333;
    color: #ffcc00;
    padding: 12px 18px;
    border-radius: 6px;
    margin-top: 15px;
    font-weight: 500;
}

