:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --color-bg-card: #11271B;
    --color-bg-main: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

.page-blog-how-to-find-anto247-new-link-safely {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-main); /* Default text color for the page */
    background-color: var(--color-bg-main); /* Main background color */
}

/* Hero Section */
.page-blog-how-to-find-anto247-new-link-safely__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above content */
    align-items: center;
    text-align: center;
    padding: 10px 20px 60px; /* Small padding-top, body handles header offset */
    overflow: hidden;
    background-color: var(--color-bg-main); /* Ensure dark background for hero */
}

.page-blog-how-to-find-anto247-new-link-safely__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for large screens */
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog-how-to-find-anto247-new-link-safely__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    max-height: 600px; /* Limit height for aesthetic */
}

.page-blog-how-to-find-anto247-new-link-safely__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    position: relative; /* Ensure content is above any potential background layers */
}

.page-blog-how-to-find-anto247-new-link-safely__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Flexible font size for H1 */
    color: var(--color-text-main);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-how-to-find-anto247-new-link-safely__intro-description {
    font-size: 1.1em;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

/* CTA Buttons */
.page-blog-how-to-find-anto247-new-link-safely__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 15px; /* Add padding for mobile */
}

.page-blog-how-to-find-anto247-new-link-safely__btn-primary,
.page-blog-how-to-find-anto247-new-link-safely__btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%; /* Ensure buttons don't overflow */
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    min-width: 180px; /* Minimum width for buttons */
}

.page-blog-how-to-find-anto247-new-link-safely__btn-primary {
    background: var(--color-button-gradient);
    color: #ffffff; /* White text for primary button */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-find-anto247-new-link-safely__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-how-to-find-anto247-new-link-safely__btn-secondary {
    background: transparent;
    color: var(--color-primary); /* Primary color text for secondary button */
    border: 2px solid var(--color-primary);
    box-shadow: none;
}

.page-blog-how-to-find-anto247-new-link-safely__btn-secondary:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Content Area */
.page-blog-how-to-find-anto247-new-link-safely__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--color-bg-main); /* Match main background */
    color: var(--color-text-main); /* Main text color */
}

.page-blog-how-to-find-anto247-new-link-safely__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-how-to-find-anto247-new-link-safely__section-title {
    font-size: 2.2em;
    color: var(--color-gold); /* Gold color for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.page-blog-how-to-find-anto247-new-link-safely__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 10px auto 0;
}

.page-blog-how-to-find-anto247-new-link-safely__sub-title {
    font-size: 1.6em;
    color: var(--color-primary);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-how-to-find-anto247-new-link-safely__paragraph {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: var(--color-text-main);
}

.page-blog-how-to-find-anto247-new-link-safely__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

/* FAQ Section */
.page-blog-how-to-find-anto247-new-link-safely__faq-list {
    margin-top: 30px;
}

.page-blog-how-to-find-anto247-new-link-safely__faq-item {
    background-color: var(--color-bg-card); /* Card background color */
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--color-text-main);
}

.page-blog-how-to-find-anto247-new-link-safely__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--color-text-main);
    background-color: var(--color-deep-green); /* Slightly different background for question */
    border-bottom: 1px solid var(--color-divider);
    list-style: none; /* For details/summary */
}

.page-blog-how-to-find-anto247-new-link-safely__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-blog-how-to-find-anto247-new-link-safely__faq-item summary {
    list-style: none;
}

.page-blog-how-to-find-anto247-new-link-safely__faq-qtext {
    flex-grow: 1;
}

.page-blog-how-to-find-anto247-new-link-safely__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--color-glow);
}

.page-blog-how-to-find-anto247-new-link-safely__faq-item[open] .page-blog-how-to-find-anto247-new-link-safely__faq-toggle {
    content: '−';
}

.page-blog-how-to-find-anto247-new-link-safely__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--color-text-secondary);
    background-color: var(--color-bg-card);
    border-top: 1px solid var(--color-divider);
}

/* Conclusion Section */
.page-blog-how-to-find-anto247-new-link-safely__conclusion-section {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--color-bg-main); /* Ensure dark background for conclusion */
    color: var(--color-text-main);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-how-to-find-anto247-new-link-safely__hero-image {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-find-anto247-new-link-safely__hero-section {
        padding: 10px 15px 40px;
    }

    .page-blog-how-to-find-anto247-new-link-safely__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-blog-how-to-find-anto247-new-link-safely__intro-description {
        font-size: 1em;
    }

    .page-blog-how-to-find-anto247-new-link-safely__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-how-to-find-anto247-new-link-safely__btn-primary,
    .page-blog-how-to-find-anto247-new-link-safely__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        min-width: unset;
    }

    .page-blog-how-to-find-anto247-new-link-safely__content-area,
    .page-blog-how-to-find-anto247-new-link-safely__conclusion-section {
        padding: 30px 15px;
    }

    .page-blog-how-to-find-anto247-new-link-safely__section-title {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-how-to-find-anto247-new-link-safely__sub-title {
        font-size: 1.4em;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-blog-how-to-find-anto247-new-link-safely__paragraph {
        font-size: 0.95em;
    }

    /* Images responsiveness */
    .page-blog-how-to-find-anto247-new-link-safely img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-how-to-find-anto247-new-link-safely__hero-image-wrapper,
    .page-blog-how-to-find-anto247-new-link-safely__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* FAQ */
    .page-blog-how-to-find-anto247-new-link-safely__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-blog-how-to-find-anto247-new-link-safely__faq-answer {
        padding: 15px 20px;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-blog-how-to-find-anto247-new-link-safely__main-title {
        font-size: clamp(1.6em, 8vw, 2.2em);
    }
    .page-blog-how-to-find-anto247-new-link-safely__hero-image {
        max-height: 300px;
    }
}