/* style/resources-hit-club-withdrawal-guide.css */
.page-resources-hit-club-withdrawal-guide {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-resources-hit-club-withdrawal-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-hit-club-withdrawal-guide__hero {
    background: linear-gradient(135deg, #007BFF, #4da3ff);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-hit-club-withdrawal-guide__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-resources-hit-club-withdrawal-guide__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.page-resources-hit-club-withdrawal-guide__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-resources-hit-club-withdrawal-guide__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-hit-club-withdrawal-guide__button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: 2px solid transparent;
}

.page-resources-hit-club-withdrawal-guide__button--primary {
    background-color: #FFD700;
    color: #0056b3; /* Darker blue for contrast */
    border-color: #FFD700;
}

.page-resources-hit-club-withdrawal-guide__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-hit-club-withdrawal-guide__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
    margin-left: 15px;
}

.page-resources-hit-club-withdrawal-guide__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-hit-club-withdrawal-guide__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-resources-hit-club-withdrawal-guide__section--alt-bg {
    background-color: #f0f4f8;
}

.page-resources-hit-club-withdrawal-guide__section-title {
    font-size: 2.5em;
    color: #007BFF; /* Primary blue for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-hit-club-withdrawal-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    border-radius: 2px;
}

.page-resources-hit-club-withdrawal-guide__sub-section-title {
    font-size: 1.8em;
    color: #0056b3; /* Darker blue for sub-titles */
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-resources-hit-club-withdrawal-guide__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-resources-hit-club-withdrawal-guide__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-resources-hit-club-withdrawal-guide__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #333;
}

.page-resources-hit-club-withdrawal-guide__list li::before {
    content: '\2713'; /* Checkmark */
    position: absolute;
    left: 0;
    top: 0;
    color: #007BFF; /* Primary blue checkmark */
    font-weight: bold;
    font-size: 1.2em;
}

.page-resources-hit-club-withdrawal-guide__list ul {
    list-style: disc;
    padding-left: 40px;
    margin-top: 10px;
}

.page-resources-hit-club-withdrawal-guide__list ol {
    list-style: decimal;
    padding-left: 40px;
    margin-top: 10px;
}

.page-resources-hit-club-withdrawal-guide__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-hit-club-withdrawal-guide__section--cta {
    background: linear-gradient(135deg, #0056b3, #007BFF);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-resources-hit-club-withdrawal-guide__section--cta .page-resources-hit-club-withdrawal-guide__section-title {
    color: #FFD700;
}

.page-resources-hit-club-withdrawal-guide__section--cta .page-resources-hit-club-withdrawal-guide__text {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-resources-hit-club-withdrawal-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-hit-club-withdrawal-guide__title {
        font-size: 2.8em;
    }
    .page-resources-hit-club-withdrawal-guide__subtitle {
        font-size: 1.1em;
    }
    .page-resources-hit-club-withdrawal-guide__section-title {
        font-size: 2em;
    }
    .page-resources-hit-club-withdrawal-guide__sub-section-title {
        font-size: 1.5em;
    }
    .page-resources-hit-club-withdrawal-guide__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-resources-hit-club-withdrawal-guide__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-resources-hit-club-withdrawal-guide__hero {
        padding: 60px 0;
    }
    .page-resources-hit-club-withdrawal-guide__title {
        font-size: 2.2em;
    }
    .page-resources-hit-club-withdrawal-guide__subtitle {
        font-size: 1em;
    }
    .page-resources-hit-club-withdrawal-guide__section {
        padding: 40px 0;
    }
    .page-resources-hit-club-withdrawal-guide__section-title {
        font-size: 1.8em;
    }
    .page-resources-hit-club-withdrawal-guide__sub-section-title {
        font-size: 1.3em;
    }
    .page-resources-hit-club-withdrawal-guide__button {
        padding: 10px 25px;
        font-size: 1em;
    }
    .page-resources-hit-club-withdrawal-guide__list li {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-resources-hit-club-withdrawal-guide__title {
        font-size: 1.8em;
    }
    .page-resources-hit-club-withdrawal-guide__subtitle {
        font-size: 0.9em;
    }
    .page-resources-hit-club-withdrawal-guide__section-title {
        font-size: 1.5em;
    }
    .page-resources-hit-club-withdrawal-guide__sub-section-title {
        font-size: 1.2em;
    }
    .page-resources-hit-club-withdrawal-guide__button {
        width: 100%;
        max-width: 250px;
    }
    .page-resources-hit-club-withdrawal-guide__button--secondary {
        margin-top: 10px;
    }
}