/* ===========================
   Options Menu Buttons
=========================== */
.options-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.options-menu button {
    padding: 10px 18px;
    border-radius: 10px;
    border: 2px solid #83ae03;
    background-color: #ffffff;
    color: #83ae03;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

/* Hover */
.options-menu button:hover {
    background-color: #83ae03;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Active button */
.options-menu button.active {
    background-color: #83ae03;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

/* Mobile */
@media (max-width: 576px) {
    .options-menu {
        flex-direction: column;
    }

    .options-menu button {
        width: 100%;
        text-align: center;
    }
}

/* ===========================
   Content Sections
=========================== */
.content-section {
    display: none;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid #e0e0e0;
    line-height: 1.7;
    font-size: 0.95rem;
    color: #333;
}

.content-section.active {
    display: block;
}

/* Headings */
.content-section h2 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: #83ae03;
}

.content-section h3 {
    font-size: 1.15rem;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #83ae03;
}

/* Paragraphs */
.content-section p {
    margin-bottom: 14px;
    text-align: justify;
}

/* Lists */
.content-section ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.content-section ul li {
    margin-bottom: 8px;
}

/* Bold sections */
.content-section strong {
    color: #222;
}

/* Links */
.content-section a {
    color: #83ae03;
    text-decoration: underline;
}

.content-section a:hover {
    text-decoration: none;
}
.content-section.active {
    animation: fadeIn 0.3s ease-in-out;
}

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