:root {
    --primary-color: #0A1931;
    --secondary-color: #FFD700;
    --accent-color: #E53935;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f8f9fa;
    --bg-dark-card: rgba(255, 255, 255, 0.1);
}

.page-resources-beginner-guide-fishing-machine-2 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default for light background content area */
    background-color: var(--bg-light);
}

.page-resources-beginner-guide-fishing-machine-2__hero-section {
    position: relative;
    padding: 100px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-resources-beginner-guide-fishing-machine-2__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

.page-resources-beginner-guide-fishing-machine-2__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.page-resources-beginner-guide-fishing-machine-2__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-beginner-guide-fishing-machine-2__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-resources-beginner-guide-fishing-machine-2__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-beginner-guide-fishing-machine-2__btn-primary,
.page-resources-beginner-guide-fishing-machine-2__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-beginner-guide-fishing-machine-2__btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-resources-beginner-guide-fishing-machine-2__btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.page-resources-beginner-guide-fishing-machine-2__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-resources-beginner-guide-fishing-machine-2__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-resources-beginner-guide-fishing-machine-2__content-area {
    padding: 60px 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-resources-beginner-guide-fishing-machine-2__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-beginner-guide-fishing-machine-2__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-resources-beginner-guide-fishing-machine-2__subsection-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-resources-beginner-guide-fishing-machine-2 p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-resources-beginner-guide-fishing-machine-2__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-resources-beginner-guide-fishing-machine-2__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-resources-beginner-guide-fishing-machine-2__list strong {
    color: var(--primary-color);
}

.page-resources-beginner-guide-fishing-machine-2__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-beginner-guide-fishing-machine-2__faq-list {
    margin-top: 40px;
}

.page-resources-beginner-guide-fishing-machine-2__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-beginner-guide-fishing-machine-2__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.page-resources-beginner-guide-fishing-machine-2__faq-question:hover {
    background-color: darken(var(--primary-color), 10%);
}

.page-resources-beginner-guide-fishing-machine-2__faq-title {
    margin: 0;
    color: var(--text-light);
}

.page-resources-beginner-guide-fishing-machine-2__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-beginner-guide-fishing-machine-2__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-dark);
    background-color: #ffffff;
}

.page-resources-beginner-guide-fishing-machine-2__faq-item.active .page-resources-beginner-guide-fishing-machine-2__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px;
}

.page-resources-beginner-guide-fishing-machine-2__faq-item.active .page-resources-beginner-guide-fishing-machine-2__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-beginner-guide-fishing-machine-2__cta-final {
    margin-top: 50px;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-resources-beginner-guide-fishing-machine-2__main-title {
        font-size: 2.8em;
    }
    .page-resources-beginner-guide-fishing-machine-2__section-title {
        font-size: 2em;
    }
    .page-resources-beginner-guide-fishing-machine-2__subsection-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-resources-beginner-guide-fishing-machine-2__hero-section {
        padding: 80px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
    .page-resources-beginner-guide-fishing-machine-2__main-title {
        font-size: 2em;
    }
    .page-resources-beginner-guide-fishing-machine-2__description {
        font-size: 1em;
    }
    .page-resources-beginner-guide-fishing-machine-2__cta-buttons,
    .page-resources-beginner-guide-fishing-machine-2__cta-final {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-beginner-guide-fishing-machine-2__btn-primary,
    .page-resources-beginner-guide-fishing-machine-2__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-resources-beginner-guide-fishing-machine-2__content-area {
        padding: 40px 0;
    }
    .page-resources-beginner-guide-fishing-machine-2__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-resources-beginner-guide-fishing-machine-2 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .page-resources-beginner-guide-fishing-machine-2__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-resources-beginner-guide-fishing-machine-2__faq-answer {
        padding: 0 15px;
    }
    .page-resources-beginner-guide-fishing-machine-2__faq-item.active .page-resources-beginner-guide-fishing-machine-2__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-resources-beginner-guide-fishing-machine-2__main-title {
        font-size: 1.8em;
    }
    .page-resources-beginner-guide-fishing-machine-2__section-title {
        font-size: 1.8em;
    }
    .page-resources-beginner-guide-fishing-machine-2__subsection-title {
        font-size: 1.3em;
    }
    .page-resources-beginner-guide-fishing-machine-2 p,
    .page-resources-beginner-guide-fishing-machine-2__list li {
        font-size: 1em;
    }
}