/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* Body and Background */
body {
    background: #1b1b1b;
    color: #fff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Section */
.header {
    background: var(--primary-color, #ca1c1c);
    text-align: center;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1rem;
    color: #ddd;
}

.header .home-link {
    position: absolute;
    top: 1rem;
    left: 1rem;
    text-decoration: none;
    color: #fff;
    background: #252525;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.header .home-link:hover {
    background: #333;
}


/* Main Content Section */
.content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Guides Section */
.guides-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ca1c1c;
}

.guides-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guides-list li a {
    text-decoration: none;
    color: #fff;
    background: #252525;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    display: block;
    transition: background 0.3s;
}

.guides-list li a:hover {
    background: #333;
}

/* FAQ Section */
.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ca1c1c;
}

.faq-section .accordion .accordion-item .accordion-content p a{
    color: #ca1c1c;
    text-decoration: none;
    font-weight: bold;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: #252525;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.accordion-button {
    background: none;
    border: none;
    color: #fff;
    padding: 1rem;
    font-size: 1.1rem;
    text-align: left;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.accordion-button:hover {
    background: #333;
}

.accordion-content {
    background: #1f1f1f;
    color: #ddd;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

.accordion-content p {
    padding: 1rem 0;
}

/* Support Section */
.support-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ca1c1c;
}

.support-section p a {
    color: #ca1c1c;
    text-decoration: none;
    font-weight: bold;
}

.support-section p a:hover {
    text-decoration: underline;
}

/* Footer Section */
.footer {
    text-align: center;
    background: #111;
    color: #ccc;
    padding: 1rem 0;
    margin-top: auto;
}

.footer p {
    font-size: 0.9rem;
}
