.page-blog-how-to-safely-access-58vin-link {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --background-color: #F4F7FB;
    --text-main: #1F2D3D;
    --text-black: #000000;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;

    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--background-color);
    padding-top: 10px; /* Small top padding for non-hero sections, assuming body handles header offset */
}

.page-blog-how-to-safely-access-58vin-link__hero-section {
    width: 100%;
    margin-bottom: 40px;
    background-color: var(--primary-color); /* Fallback or slight background */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-how-to-safely-access-58vin-link__hero-image-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 40%; /* Custom aspect ratio, adjust as needed */
    position: relative;
    overflow: hidden;
}

.page-blog-how-to-safely-access-58vin-link__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-blog-how-to-safely-access-58vin-link__hero-content {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin-top: 40px; /* Positive margin to separate from image */
    background-color: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

@media (max-width: 768px) {
    .page-blog-how-to-safely-access-58vin-link__hero-image-wrapper {
        padding-bottom: 56.25%; /* 16:9 for mobile */
    }
    .page-blog-how-to-safely-access-58vin-link__hero-content {
        margin-top: 20px; /* Smaller margin for mobile */
        padding: 30px 15px;
    }
}

.page-blog-how-to-safely-access-58vin-link__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    color: var(--text-black);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-how-to-safely-access-58vin-link__description {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 30px;
}

.page-blog-how-to-safely-access-58vin-link__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-safely-access-58vin-link__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-safely-access-58vin-link__content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-blog-how-to-safely-access-58vin-link__section {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.page-blog-how-to-safely-access-58vin-link__section-title {
    font-size: 2rem;
    color: var(--text-black);
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-blog-how-to-safely-access-58vin-link__section-body {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.page-blog-how-to-safely-access-58vin-link__section-body--reversed {
    flex-direction: row-reverse;
}

.page-blog-how-to-safely-access-58vin-link__section-body p,
.page-blog-how-to-safely-access-58vin-link__section-body ul,
.page-blog-how-to-safely-access-58vin-link__section-body ol {
    flex: 1;
    font-size: 1.05rem;
    color: var(--text-main);
}

.page-blog-how-to-safely-access-58vin-link__content-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    object-fit: cover;
}

.page-blog-how-to-safely-access-58vin-link__ordered-list,
.page-blog-how-to-safely-access-58vin-link__unordered-list {
    list-style-position: inside;
    padding-left: 0;
    margin-left: 20px;
}

.page-blog-how-to-safely-access-58vin-link__list-item {
    margin-bottom: 10px;
    color: var(--text-main);
}

.page-blog-how-to-safely-access-58vin-link__faq-list {
    margin-top: 30px;
}

.page-blog-how-to-safely-access-58vin-link__faq-item {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.page-blog-how-to-safely-access-58vin-link__faq-question {
    font-size: 1.2rem;
    color: var(--text-black);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-how-to-safely-access-58vin-link__faq-answer {
    font-size: 1rem;
    color: var(--text-main);
}

.page-blog-how-to-safely-access-58vin-link__conclusion-section {
    text-align: center;
    padding: 40px;
    background-color: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.page-blog-how-to-safely-access-58vin-link__conclusion-section p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 30px;
}

.page-blog-how-to-safely-access-58vin-link__cta-button--bottom {
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-blog-how-to-safely-access-58vin-link__hero-content {
        padding: 40px 20px;
    }
    .page-blog-how-to-safely-access-58vin-link__section-title {
        font-size: 1.8rem;
    }
    .page-blog-how-to-safely-access-58vin-link__section-body {
        flex-direction: column;
        text-align: center;
    }
    .page-blog-how-to-safely-access-58vin-link__section-body--reversed {
        flex-direction: column; /* Keep column order for reversed on mobile */
    }
    .page-blog-how-to-safely-access-58vin-link__section-body p,
    .page-blog-how-to-safely-access-58vin-link__section-body ul,
    .page-blog-how-to-safely-access-58vin-link__section-body ol {
        text-align: left; /* Keep text aligned left within its block */
        width: 100%;
    }
    .page-blog-how-to-safely-access-58vin-link__content-image {
        max-width: 80%;
        min-width: 250px;
    }
    .page-blog-how-to-safely-access-58vin-link__ordered-list,
    .page-blog-how-to-safely-access-58vin-link__unordered-list {
        margin-left: 0;
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-safely-access-58vin-link__content-wrapper {
        padding: 15px;
    }
    .page-blog-how-to-safely-access-58vin-link__hero-content {
        padding: 25px 15px;
    }
    .page-blog-how-to-safely-access-58vin-link__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-blog-how-to-safely-access-58vin-link__description {
        font-size: 1rem;
    }
    .page-blog-how-to-safely-access-58vin-link__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-blog-how-to-safely-access-58vin-link__section {
        padding: 25px;
    }
    .page-blog-how-to-safely-access-58vin-link__section-title {
        font-size: 1.5rem;
    }
    .page-blog-how-to-safely-access-58vin-link__content-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}