/* style/index-review-fabet.css */
.page-index-review-fabet {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #1A1A2E; /* Dark blue background */
    line-height: 1.6;
}

.page-index-review-fabet .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-review-fabet .text-center {
    text-align: center;
}

.page-index-review-fabet h1, .page-index-review-fabet h2, .page-index-review-fabet h3 {
    color: #FFD700; /* Gold for headings */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-review-fabet h1 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 30px;
}

.page-index-review-fabet h2 {
    font-size: 2.5em;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
    margin-top: 40px;
}

.page-index-review-fabet h3 {
    font-size: 1.8em;
    color: #FFFFFF;
    margin-top: 30px;
}

.page-index-review-fabet p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-index-review-fabet ul, .page-index-review-fabet ol {
    margin-left: 20px;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-index-review-fabet li {
    margin-bottom: 8px;
}

.page-index-review-fabet a {
    color: #FFD700;
    text-decoration: none;
}

.page-index-review-fabet a:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-index-review-fabet .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #1A1A2E; /* Ensure dark background for hero */
}

.page-index-review-fabet .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index-review-fabet .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-index-review-fabet .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-fabet .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-index-review-fabet .hero-content h1 {
    color: #FFD700;
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-fabet .hero-content p {
    color: #FFFFFF;
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-index-review-fabet .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FFD700; /* Primary color for CTA */
    color: #1A1A2E; /* Dark text on gold button */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-index-review-fabet .cta-button:hover {
    background: #E6C200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

/* Content Sections */
.page-index-review-fabet .content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-review-fabet .content-section:last-of-type {
    border-bottom: none;
}

.page-index-review-fabet .introduction, .page-index-review-fabet .payments, .page-index-review-fabet .security-support, .page-index-review-fabet .register-guide, .page-index-review-fabet .conclusion {
    background-color: #1A1A2E;
}

.page-index-review-fabet .products, .page-index-review-fabet .promotions, .page-index-review-fabet .pros-cons, .page-index-review-fabet .faq-section {
    background-color: #282845; /* Slightly lighter dark blue for contrast */
}

/* Product Grid */
.page-index-review-fabet .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-review-fabet .product-card {
    background-color: #1A1A2E;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
}

.page-index-review-fabet .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-index-review-fabet .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 3px solid #FFD700;
}

.page-index-review-fabet .product-card h3 {
    font-size: 1.5em;
    color: #FFD700;
    padding: 15px 20px 0;
    margin-bottom: 10px;
}

.page-index-review-fabet .product-card h3 a {
    color: #FFD700;
    text-decoration: none;
}

.page-index-review-fabet .product-card h3 a:hover {
    text-decoration: underline;
}

.page-index-review-fabet .product-card p {
    font-size: 1em;
    color: #E0E0E0;
    padding: 0 20px;
}

/* Promotion List */
.page-index-review-fabet .promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-review-fabet .promo-item {
    background-color: #1A1A2E;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
}

.page-index-review-fabet .promo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-index-review-fabet .promo-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 3px solid #FFD700;
}

.page-index-review-fabet .promo-item h3 {
    font-size: 1.6em;
    color: #FFD700;
    padding: 15px 20px 0;
    margin-bottom: 10px;
}

.page-index-review-fabet .promo-item h3 a {
    color: #FFD700;
    text-decoration: none;
}

.page-index-review-fabet .promo-item h3 a:hover {
    text-decoration: underline;
}

.page-index-review-fabet .promo-item p {
    font-size: 1.05em;
    color: #E0E0E0;
    padding: 0 20px;
}

/* Pros Cons Section */
.page-index-review-fabet .grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.page-index-review-fabet .card-item {
    background-color: #1A1A2E;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-review-fabet .card-item h3 {
    color: #FFD700;
    margin-top: 0;
}

.page-index-review-fabet .card-item ul {
    list-style: disc;
    padding-left: 20px;
}

.page-index-review-fabet .card-item li {
    color: #E0E0E0;
    margin-bottom: 10px;
}

/* FAQ Section */
.page-index-review-fabet .faq-container {
    margin-top: 40px;
}

.page-index-review-fabet .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1A1A2E;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-fabet .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #1A1A2E;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-index-review-fabet .faq-question:hover {
    background: #282845;
    border-color: #FFD700;
}

.page-index-review-fabet .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #FFFFFF;
}

.page-index-review-fabet .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-index-review-fabet .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-index-review-fabet .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background-color: #282845;
    color: #E0E0E0;
    border-radius: 0 0 8px 8px;
}

.page-index-review-fabet .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 25px;
    border-top: 1px dashed rgba(255, 215, 0, 0.1);
}

.page-index-review-fabet .faq-answer p {
    margin-bottom: 0;
    font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-fabet .hero-content h1 {
        font-size: 3em;
    }
    .page-index-review-fabet .hero-content p {
        font-size: 1.2em;
    }
    .page-index-review-fabet h1 {
        font-size: 2.5em;
    }
    .page-index-review-fabet h2 {
        font-size: 2em;
    }
    .page-index-review-fabet h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-index-review-fabet .hero-section {
        padding: 40px 15px;
    }
    .page-index-review-fabet .hero-image img {
        border-radius: 4px;
    }
    .page-index-review-fabet .hero-content h1 {
        font-size: 2.2em;
    }
    .page-index-review-fabet .hero-content p {
        font-size: 1em;
    }
    .page-index-review-fabet .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-index-review-fabet .content-section {
        padding: 40px 0;
    }
    .page-index-review-fabet .container {
        padding: 0 15px;
    }
    .page-index-review-fabet h1 {
        font-size: 2em;
    }
    .page-index-review-fabet h2 {
        font-size: 1.8em;
    }
    .page-index-review-fabet h3 {
        font-size: 1.4em;
    }
    .page-index-review-fabet .product-grid, .page-index-review-fabet .promo-list, .page-index-review-fabet .grid-2-cols {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-index-review-fabet .card-item {
        padding: 20px;
    }
    .page-index-review-fabet .faq-question {
        padding: 15px 20px;
    }
    .page-index-review-fabet .faq-question h3 {
        font-size: 1.1em;
    }
    .page-index-review-fabet .faq-answer {
        padding: 0 20px;
    }
    .page-index-review-fabet .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-index-review-fabet .hero-content h1 {
        font-size: 1.8em;
    }
    .page-index-review-fabet .hero-content p {
        font-size: 0.9em;
    }
    .page-index-review-fabet .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-index-review-fabet h1 {
        font-size: 1.8em;
    }
    .page-index-review-fabet h2 {
        font-size: 1.5em;
    }
    .page-index-review-fabet h3 {
        font-size: 1.2em;
    }
    .page-index-review-fabet p, .page-index-review-fabet ul, .page-index-review-fabet ol {
        font-size: 1em;
    }
    .page-index-review-fabet .faq-question h3 {
        font-size: 1em;
    }
    .page-index-review-fabet .faq-toggle {
        font-size: 20px;
    }
}