/* style/resources-how-to-choose-best-kubet-page.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-resources-how-to-choose-best-kubet-page {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background #1a1a2e */
    background-color: #1a1a2e; /* Inherited from body, but explicitly set for safety */
    padding-bottom: 60px; /* Space for footer */
    box-sizing: border-box;
}

/* Container for centralizing content */
.page-resources-how-to-choose-best-kubet-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-resources-how-to-choose-best-kubet-page__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    padding: 60px 20px; /* Default padding, will be adjusted by --header-offset */
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    box-sizing: border-box;
}

.page-resources-how-to-choose-best-kubet-page__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-resources-how-to-choose-best-kubet-page__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
    /* No filter to change color, only brightness */
}

.page-resources-how-to-choose-best-kubet-page__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
    border-radius: 8px;
}

.page-resources-how-to-choose-best-kubet-page__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffc107; /* Highlight with auxiliary color */
    line-height: 1.2;
}

.page-resources-how-to-choose-best-kubet-page__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-how-to-choose-best-kubet-page__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* General Section Styling */
.page-resources-how-to-choose-best-kubet-page__section-title {
    font-size: 2.5em;
    color: #ffc107;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-resources-how-to-choose-best-kubet-page__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #f0f0f0;
}

/* Dark Background Section */
.page-resources-how-to-choose-best-kubet-page__dark-bg {
    background-color: #0d0d1e; /* Slightly darker than body for contrast */
    color: #f0f0f0;
    padding: 60px 0;
}

/* Introduction Section */
.page-resources-how-to-choose-best-kubet-page__introduction-section {
    padding: 60px 0;
}

/* Feature Grid Section */
.page-resources-how-to-choose-best-kubet-page__key-factors-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.page-resources-how-to-choose-best-kubet-page__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-choose-best-kubet-page__feature-card {
    background-color: #2a2a4a; /* Darker card background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f0f0f0;
}

.page-resources-how-to-choose-best-kubet-page__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-how-to-choose-best-kubet-page__feature-icon {
    width: 200px; /* Minimum size 200px */
    height: 150px; /* Example height, should be responsive */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-resources-how-to-choose-best-kubet-page__feature-title {
    font-size: 1.5em;
    color: #ffc107;
    margin-bottom: 15px;
}

.page-resources-how-to-choose-best-kubet-page__feature-description {
    font-size: 1em;
    color: #cccccc;
}

/* Top Pages Review Section */
.page-resources-how-to-choose-best-kubet-page__top-pages-section {
    padding: 60px 0;
}

.page-resources-how-to-choose-best-kubet-page__review-card {
    background-color: #2a2a4a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #f0f0f0;
}

.page-resources-how-to-choose-best-kubet-page__review-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-resources-how-to-choose-best-kubet-page__review-title {
    font-size: 2em;
    color: #ffc107;
    margin-bottom: 15px;
}

.page-resources-how-to-choose-best-kubet-page__review-description {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #cccccc;
    text-align: justify;
}

.page-resources-how-to-choose-best-kubet-page__review-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.page-resources-how-to-choose-best-kubet-page__review-features li {
    margin-bottom: 10px;
    color: #f0f0f0;
    padding-left: 25px;
    position: relative;
}

.page-resources-how-to-choose-best-kubet-page__review-features li::before {
    content: '✓';
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-resources-how-to-choose-best-kubet-page__highlight-text {
    color: #007bff; /* Highlight text with primary color */
}

/* Safety Tips Section */
.page-resources-how-to-choose-best-kubet-page__safety-tips-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.page-resources-how-to-choose-best-kubet-page__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-resources-how-to-choose-best-kubet-page__list-item {
    background-color: #2a2a4a;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #007bff;
    border-radius: 5px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-resources-how-to-choose-best-kubet-page__list-item strong {
    color: #ffc107;
}

.page-resources-how-to-choose-best-kubet-page__cta-box {
    background-color: #007bff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    color: #ffffff;
}

.page-resources-how-to-choose-best-kubet-page__cta-text {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: bold;
}

/* FAQ Section */
.page-resources-how-to-choose-best-kubet-page__faq-section {
    padding: 60px 0;
}

.page-resources-how-to-choose-best-kubet-page__faq-list {
    margin-top: 40px;
}

.page-resources-how-to-choose-best-kubet-page__faq-item {
    background-color: #2a2a4a;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #f0f0f0;
}

.page-resources-how-to-choose-best-kubet-page__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #007bff; /* Primary color for question background */
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.page-resources-how-to-choose-best-kubet-page__faq-question:hover {
    background-color: #0056b3; /* Darken on hover */
}

.page-resources-how-to-choose-best-kubet-page__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-how-to-choose-best-kubet-page__faq-item.active .page-resources-how-to-choose-best-kubet-page__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-how-to-choose-best-kubet-page__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #cccccc;
}

.page-resources-how-to-choose-best-kubet-page__faq-item.active .page-resources-how-to-choose-best-kubet-page__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show all content */
    padding: 20px;
}

.page-resources-how-to-choose-best-kubet-page__faq-answer p {
    margin-bottom: 15px;
    color: #cccccc;
}

/* Conclusion Section */
.page-resources-how-to-choose-best-kubet-page__conclusion-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.page-resources-how-to-choose-best-kubet-page__final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Button Styles */
.page-resources-how-to-choose-best-kubet-page__btn-primary,
.page-resources-how-to-choose-best-kubet-page__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box; /* Crucial for mobile responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-resources-how-to-choose-best-kubet-page__btn-primary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-resources-how-to-choose-best-kubet-page__btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.page-resources-how-to-choose-best-kubet-page__btn-secondary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.page-resources-how-to-choose-best-kubet-page__btn-secondary:hover {
    background-color: #007bff;
    color: #ffffff;
}

/* Copyright */
.page-resources-how-to-choose-best-kubet-page__copyright {
    text-align: center;
    padding: 30px 20px;
    background-color: #0d0d1e; /* Darker background for copyright */
    color: #cccccc;
    font-size: 0.9em;
    margin-top: 40px;
    box-sizing: border-box;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-how-to-choose-best-kubet-page__hero-title {
        font-size: 2.5em;
    }

    .page-resources-how-to-choose-best-kubet-page__section-title {
        font-size: 2em;
    }
}