/* mn25_css/faq_ru.css */
/* Russian Version (LTR) - Mazon Nahon 2025 */

/* ADD THIS TO TOP OF faq_ru.css */
body {
    direction: ltr !important; 
    text-align: left;
}

/* HERO SECTION */
.faq-hero {
    background-color: navajowhite; /* Kept your preferred color */
    padding: 60px 20px;
    text-align: center;
    border-bottom: 4px solid var(--gold, #ffd700);
}

.faq-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color, #333399);
    margin-bottom: 10px;
}

.faq-hero p {
    font-size: 1.2rem;
    color: #555;
}

/* FAQ CONTAINER */
.faq-section {
    padding: 60px 20px;
    background-color: navajowhite; /* Kept your preferred color */
    min-height: 400px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ ITEM */
.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

/* The Button (Question) - LTR Adjustment */
.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left; /* LTR: Text aligned left */
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 8px;
    direction: ltr; /* Ensure flexbox order is LTR */
}

.faq-question:hover {
    background-color: #f9f9f9;
    color: var(--primary-color, #333399);
}

.faq-question.active {
    color: var(--primary-color, #333399);
    background-color: #f0f0f5;
}

/* The Icon (+ / -) */
.faq-question .icon {
    font-size: 1.5rem;
    font-weight: normal;
    transition: transform 0.3s ease;
}

.faq-question.active .icon {
    transform: rotate(45deg);
}

/* The Answer Panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff; /* Answer box remains white */
    text-align: left; /* LTR */
    direction: ltr;
}

.answer-content {
    padding: 0 20px 20px 20px;
    color: #555;
    line-height: 1.6;
}

/* Read More Links inside answers */
.read-more-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent-green, #2e7d32);
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* CTA SECTION */
.cta-section {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #ddd;
}

.cta-section h2 {
    color: var(--primary-color, #333399);
    margin-bottom: 10px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Shop Button */
.btn-shop-now {
    background-color: var(--accent-green, #2e7d32);
    border-color: #4caf50;
    min-width: 250px;
    justify-content: center;
    color: white;
}

.btn-shop-now:hover {
    color: var(--accent-green, #2e7d32);
    background-color: white;
    border-color: var(--accent-green, #2e7d32);
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .faq-hero h1 { font-size: 2rem; }
    .faq-question { font-size: 1rem; padding: 15px; }
}