:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --color-card-bg: #11271B;
    --color-background: #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-zo88-registration-process {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-background);
}

.page-blog-zo88-registration-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-zo88-registration-process__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
    padding-top: 10px;
    background-color: var(--color-deep-green);
    overflow: hidden;
}

.page-blog-zo88-registration-process__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.page-blog-zo88-registration-process__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-zo88-registration-process__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-top: 40px;
    padding: 0 20px;
    color: var(--color-text-main);
}

.page-blog-zo88-registration-process__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-zo88-registration-process__intro-text {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-zo88-registration-process__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-blog-zo88-registration-process__cta-buttons--centered {
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-blog-zo88-registration-process__btn-primary,
.page-blog-zo88-registration-process__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-zo88-registration-process__btn-primary {
    background: var(--color-button-gradient);
    color: var(--color-text-main);
    border: none;
}

.page-blog-zo88-registration-process__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-blog-zo88-registration-process__btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.page-blog-zo88-registration-process__btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-text-main);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-zo88-registration-process__btn-small {
    padding: 10px 20px;
    font-size: 1rem;
    min-width: 150px;
}

.page-blog-zo88-registration-process__content-section {
    padding: 60px 0;
    background-color: var(--color-background);
}

.page-blog-zo88-registration-process__dark-bg {
    background-color: var(--color-card-bg);
    color: var(--color-text-main);
}

.page-blog-zo88-registration-process__section-title {
    font-size: 2.2rem;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-blog-zo88-registration-process__paragraph {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--color-text-secondary);
    text-align: justify;
}

.page-blog-zo88-registration-process__paragraph strong {
    color: var(--color-text-main);
}

.page-blog-zo88-registration-process__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-zo88-registration-process__feature-card {
    background-color: var(--color-deep-green);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-zo88-registration-process__feature-icon {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-blog-zo88-registration-process__feature-title {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-zo88-registration-process__feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.page-blog-zo88-registration-process__feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-blog-zo88-registration-process__feature-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--color-glow);
}

.page-blog-zo88-registration-process__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-zo88-registration-process__step-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.page-blog-zo88-registration-process__step-card:hover {
    transform: translateY(-5px);
}