/* style/resources-88vin-tv-official-link-safety-guide.css */
:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-color: #333333;
    --light-bg: #f5f5f5;
    --border-color: #e0e0e0;
    --register-button-bg: #C30808;
    --login-button-bg: #C30808;
    --login-register-font: #FFFF00;
}

.page-resources-88vin-tv-official-link-safety-guide {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary-color); /* Default white background */
}

.page-resources-88vin-tv-official-link-safety-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-88vin-tv-official-link-safety-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is not covered by fixed header */
    background: linear-gradient(135deg, var(--primary-color) 0%, #000000 100%); /* Darker gradient for text readability */
    color: var(--secondary-color);
    overflow: hidden;
}

.page-resources-88vin-tv-official-link-safety-guide__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 30px;
    opacity: 0.7; /* Slightly dim image for text overlay */
}

.page-resources-88vin-tv-official-link-safety-guide__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-resources-88vin-tv-official-link-safety-guide__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-88vin-tv-official-link-safety-guide__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-88vin-tv-official-link-safety-guide__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--register-button-bg); /* Using specific register color */
    color: var(--login-register-font); /* Using specific font color */
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-88vin-tv-official-link-safety-guide__cta-button:hover {
    background: darken(var(--register-button-bg), 10%); /* Darken on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-resources-88vin-tv-official-link-safety-guide__section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.page-resources-88vin-tv-official-link-safety-guide__section:nth-of-type(odd) {
    background-color: var(--light-bg);
}

.page-resources-88vin-tv-official-link-safety-guide__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-88vin-tv-official-link-safety-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--register-button-bg);
    border-radius: 2px;
}

.page-resources-88vin-tv-official-link-safety-guide__paragraph {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    color: var(--text-color);
}

/* Grid Layouts */
.page-resources-88vin-tv-official-link-safety-guide__grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-88vin-tv-official-link-safety-guide__card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-resources-88vin-tv-official-link-safety-guide__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-88vin-tv-official-link-safety-guide__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-88vin-tv-official-link-safety-guide__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-88vin-tv-official-link-safety-guide__card-text {
    font-size: 1em;
    color: var(--text-color);
}

/* Checklist Styling */
.page-resources-88vin-tv-official-link-safety-guide__checklist {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-resources-88vin-tv-official-link-safety-guide__checklist-item {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-88vin-tv-official-link-safety-guide__checklist-item::before {
    content: '✅';
    font-size: 1.5em;
    margin-right: 15px;
    flex-shrink: 0;
    display: none; /* Hide default checkmark, use custom styling */
}

.page-resources-88vin-tv-official-link-safety-guide__checklist-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-resources-88vin-tv-official-link-safety-guide__checklist-text {
    font-size: 1em;
    color: var(--text-color);
}

/* Steps Grid */
.page-resources-88vin-tv-official-link-safety-guide__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-88vin-tv-official-link-safety-guide__step-item {
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.page-resources-88vin-tv-official-link-safety-guide__step-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-resources-88vin-tv-official-link-safety-guide__step-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-88vin-tv-official-link-safety-guide__step-text {
    font-size: 0.95em;
    color: var(--text-color);
}

/* Benefits Section */
.page-resources-88vin-tv-official-link-safety-guide__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-88vin-tv-official-link-safety-guide__benefit-card {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-resources-88vin-tv-official-link-safety-guide__benefit-title {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-resources-88vin-tv-official-link-safety-guide__benefit-text {
    font-size: 1em;
}

.page-resources-88vin-tv-official-link-safety-guide__cta-wrapper {
    text-align: center;
    margin-top: 60px;
}

.page-resources-88vin-tv-official-link-safety-guide__btn-primary {
    background: var(--register-button-bg);
    color: var(--login-register-font);
}

.page-resources-88vin-tv-official-link-safety-guide__btn-primary:hover {
    background: darken(var(--register-button-bg), 10%);
}

.page-resources-88vin-tv-official-link-safety-guide__btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-88vin-tv-official-link-safety-guide__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* FAQ Section */
.page-resources-88vin-tv-official-link-safety-guide__faq-section {
    background-color: var(--light-bg);
}

.page-resources-88vin-tv-official-link-safety-guide__faq-list {
    margin-top: 40px;
}

.page-resources-88vin-tv-official-link-safety-guide__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-88vin-tv-official-link-safety-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    color: var(--text-color);
}

.page-resources-88vin-tv-official-link-safety-guide__faq-item.active .page-resources-88vin-tv-official-link-safety-guide__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: var(--secondary-color);
    border-radius: 0 0 5px 5px;
}

.page-resources-88vin-tv-official-link-safety-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-resources-88vin-tv-official-link-safety-guide__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-resources-88vin-tv-official-link-safety-guide__faq-question:active {
    background: #eeeeee;
}

.page-resources-88vin-tv-official-link-safety-guide__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color);
}

.page-resources-88vin-tv-official-link-safety-guide__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-resources-88vin-tv-official-link-safety-guide__faq-item.active .page-resources-88vin-tv-official-link-safety-guide__faq-toggle {
    color: #333;
    transform: rotate(45deg); /* Rotate for 'x' effect */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-88vin-tv-official-link-safety-guide__main-title {
        font-size: 2.8em;
    }
    .page-resources-88vin-tv-official-link-safety-guide__intro-text {
        font-size: 1.1em;
    }
    .page-resources-88vin-tv-official-link-safety-guide__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-88vin-tv-official-link-safety-guide__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-88vin-tv-official-link-safety-guide__hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: none;
        padding: 15px;
        background: rgba(0, 0, 0, 0.6); /* Slightly more opaque for mobile */
    }
    .page-resources-88vin-tv-official-link-safety-guide__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-resources-88vin-tv-official-link-safety-guide__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-resources-88vin-tv-official-link-safety-guide__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-resources-88vin-tv-official-link-safety-guide__section {
        padding: 40px 0;
    }
    .page-resources-88vin-tv-official-link-safety-guide__container {
        padding: 0 15px;
    }
    .page-resources-88vin-tv-official-link-safety-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-88vin-tv-official-link-safety-guide__paragraph {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .page-resources-88vin-tv-official-link-safety-guide__grid-3-col,
    .page-resources-88vin-tv-official-link-safety-guide__steps-grid,
    .page-resources-88vin-tv-official-link-safety-guide__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-resources-88vin-tv-official-link-safety-guide__card,
    .page-resources-88vin-tv-official-link-safety-guide__step-item,
    .page-resources-88vin-tv-official-link-safety-guide__benefit-card {
        padding: 20px;
    }

    .page-resources-88vin-tv-official-link-safety-guide__card-image {
        height: 180px;
    }

    .page-resources-88vin-tv-official-link-safety-guide__checklist-item {
        padding: 20px;
    }
    .page-resources-88vin-tv-official-link-safety-guide__checklist-title {
        font-size: 1.2em;
    }
    .page-resources-88vin-tv-official-link-safety-guide__checklist-text {
        font-size: 0.95em;
    }

    .page-resources-88vin-tv-official-link-safety-guide__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-resources-88vin-tv-official-link-safety-guide__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-resources-88vin-tv-official-link-safety-guide__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-resources-88vin-tv-official-link-safety-guide__faq-answer {
        padding: 0 15px;
    }
    .page-resources-88vin-tv-official-link-safety-guide__faq-item.active .page-resources-88vin-tv-official-link-safety-guide__faq-answer {
        padding: 15px !important;
    }

    /* Ensure all images are responsive */
    .page-resources-88vin-tv-official-link-safety-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Ensure containers with images/buttons don't overflow */
    .page-resources-88vin-tv-official-link-safety-guide__section,
    .page-resources-88vin-tv-official-link-safety-guide__card,
    .page-resources-88vin-tv-official-link-safety-guide__container,
    .page-resources-88vin-tv-official-link-safety-guide__cta-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
}