/* style/affiliate-program-agent-registration-entrance.css */

/* Variables for consistent styling */
:root {
    --page-affiliate-program-agent-registration-entrance-primary-color: #0A192F;
    --page-affiliate-program-agent-registration-entrance-secondary-color: #E0B400;
    --page-affiliate-program-agent-registration-entrance-text-light: #F8F8F8;
    --page-affiliate-program-agent-registration-entrance-text-dark: #0A192F;
    --page-affiliate-program-agent-registration-entrance-accent-dark: #9d7e00; /* Darker shade of secondary for contrast */
    --page-affiliate-program-agent-registration-entrance-background-light: #e0e0e0; /* A very light grey for subtle contrast */
}

.page-affiliate-program-agent-registration-entrance {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-affiliate-program-agent-registration-entrance-text-light); /* Default text color on dark backgrounds */
    background-color: var(--page-affiliate-program-agent-registration-entrance-primary-color);
}

.page-affiliate-program-agent-registration-entrance__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-affiliate-program-agent-registration-entrance__hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--page-affiliate-program-agent-registration-entrance-primary-color) 0%, #1a2a46 100%);
    padding: 120px 0 60px;
    text-align: center;
    overflow: hidden;
}

.page-affiliate-program-agent-registration-entrance__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-affiliate-program-agent-registration-entrance__hero-title,
.page-affiliate-program-agent-registration-entrance__hero-subtitle {
    position: relative;
    z-index: 1;
    color: var(--page-affiliate-program-agent-registration-entrance-text-light);
}

.page-affiliate-program-agent-registration-entrance__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-affiliate-program-agent-registration-entrance-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-affiliate-program-agent-registration-entrance__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* General Section Styling */
.page-affiliate-program-agent-registration-entrance__section {
    padding: 80px 0;
    text-align: center;
}

.page-affiliate-program-agent-registration-entrance__section--dark {
    background-color: #1a2a46; /* Slightly lighter dark for contrast with primary */
}

.page-affiliate-program-agent-registration-entrance__section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-affiliate-program-agent-registration-entrance-secondary-color);
    font-weight: bold;
}

.page-affiliate-program-agent-registration-entrance__section--dark .page-affiliate-program-agent-registration-entrance__section-title {
    color: var(--page-affiliate-program-agent-registration-entrance-secondary-color);
}

.page-affiliate-program-agent-registration-entrance__section-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 60px;
    color: var(--page-affiliate-program-agent-registration-entrance-text-light);
}

.page-affiliate-program-agent-registration-entrance__section--dark .page-affiliate-program-agent-registration-entrance__section-description {
    color: var(--page-affiliate-program-agent-registration-entrance-text-light);
}

/* Buttons */
.page-affiliate-program-agent-registration-entrance__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-affiliate-program-agent-registration-entrance__btn--primary {
    background-color: var(--page-affiliate-program-agent-registration-entrance-secondary-color);
    color: var(--page-affiliate-program-agent-registration-entrance-text-dark); /* Dark text on light background */
    border: none;
}

.page-affiliate-program-agent-registration-entrance__btn--primary:hover {
    background-color: var(--page-affiliate-program-agent-registration-entrance-accent-dark);
    transform: translateY(-3px);
}

.page-affiliate-program-agent-registration-entrance__btn--large {
    font-size: 1.3em;
    padding: 18px 35px;
}

/* Features Grid */
.page-affiliate-program-agent-registration-entrance__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-affiliate-program-agent-registration-entrance__feature-item {
    background-color: #1a2a46; /* Dark background for feature items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-affiliate-program-agent-registration-entrance__feature-item:hover {
    transform: translateY(-10px);
}

.page-affiliate-program-agent-registration-entrance__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-affiliate-program-agent-registration-entrance__feature-title {
    font-size: 1.5em;
    color: var(--page-affiliate-program-agent-registration-entrance-secondary-color);
    margin-bottom: 15px;
}

.page-affiliate-program-agent-registration-entrance__feature-text {
    color: var(--page-affiliate-program-agent-registration-entrance-text-light);
    font-size: 1em;
}

/* Steps Grid */
.page-affiliate-program-agent-registration-entrance__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-affiliate-program-agent-registration-entrance__step-item {
    background-color: var(--page-affiliate-program-agent-registration-entrance-primary-color); /* Dark background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

.page-affiliate-program-agent-registration-entrance__step-number {
    background-color: var(--page-affiliate-program-agent-registration-entrance-secondary-color);
    color: var(--page-affiliate-program-agent-registration-entrance-text-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: -60px auto 20px;
    border: 5px solid var(--page-affiliate-program-agent-registration-entrance-primary-color);
    box-shadow: 0 0 0 5px var(--page-affiliate-program-agent-registration-entrance-secondary-color) inset;
}

.page-affiliate-program-agent-registration-entrance__step-title {
    font-size: 1.6em;
    color: var(--page-affiliate-program-agent-registration-entrance-secondary-color);
    margin-bottom: 15px;
}

.page-affiliate-program-agent-registration-entrance__step-text {
    color: var(--page-affiliate-program-agent-registration-entrance-text-light);
}

.page-affiliate-program-agent-registration-entrance__process-image {
    max-width: 100%;
    height: auto;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Resource List */
.page-affiliate-program-agent-registration-entrance__resource-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-affiliate-program-agent-registration-entrance__resource-item {
    background-color: #1a2a46;
    color: var(--page-affiliate-program-agent-registration-entrance-text-light);
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    position: relative;
    padding-left: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-affiliate-program-agent-registration-entrance__resource-item::before {
    content: '✓';
    color: var(--page-affiliate-program-agent-registration-entrance-secondary-color);
    font-size: 1.5em;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
}

.page-affiliate-program-agent-registration-entrance__tools-image {
    max-width: 100%;
    height: auto;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Policy Grid */
.page-affiliate-program-agent-registration-entrance__policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-affiliate-program-agent-registration-entrance__policy-item {
    background-color: var(--page-affiliate-program-agent-registration-entrance-primary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.page-affiliate-program-agent-registration-entrance__policy-title {
    font-size: 1.4em;
    color: var(--page-affiliate-program-agent-registration-entrance-secondary-color);
    margin-bottom: 15px;
}

.page-affiliate-program-agent-registration-entrance__policy-text {
    color: var(--page-affiliate-program-agent-registration-entrance-text-light);
}

/* FAQ Section */
.page-affiliate-program-agent-registration-entrance__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-affiliate-program-agent-registration-entrance__faq-item {
    background-color: #1a2a46;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-affiliate-program-agent-registration-entrance__faq-question {
    font-size: 1.3em;
    color: var(--page-affiliate-program-agent-registration-entrance-secondary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-affiliate-program-agent-registration-entrance__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-affiliate-program-agent-registration-entrance__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-affiliate-program-agent-registration-entrance__faq-answer {
    color: var(--page-affiliate-program-agent-registration-entrance-text-light);
    font-size: 1em;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
}

.page-affiliate-program-agent-registration-entrance__faq-answer.active {
    display: block;
}

/* Call to Action Section */
.page-affiliate-program-agent-registration-entrance__cta-section {
    background-color: var(--page-affiliate-program-agent-registration-entrance-primary-color);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-affiliate-program-agent-registration-entrance__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.page-affiliate-program-agent-registration-entrance__cta-title,
.page-affiliate-program-agent-registration-entrance__cta-description {
    position: relative;
    z-index: 1;
    color: var(--page-affiliate-program-agent-registration-entrance-text-light);
}

.page-affiliate-program-agent-registration-entrance__cta-title {
    font-size: 3em;
    color: var(--page-affiliate-program-agent-registration-entrance-secondary-color);
    margin-bottom: 20px;
}

.page-affiliate-program-agent-registration-entrance__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Keyword highlighting */
.page-affiliate-program-agent-registration-entrance__keyword {
    color: var(--page-affiliate-program-agent-registration-entrance-secondary-color);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-affiliate-program-agent-registration-entrance__hero-title {
        font-size: 2.8em;
    }
    .page-affiliate-program-agent-registration-entrance__section-title,
    .page-affiliate-program-agent-registration-entrance__cta-title {
        font-size: 2.2em;
    }
    .page-affiliate-program-agent-registration-entrance__features-grid,
    .page-affiliate-program-agent-registration-entrance__steps-grid,
    .page-affiliate-program-agent-registration-entrance__policy-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-affiliate-program-agent-registration-entrance__hero-title {
        font-size: 2.2em;
    }
    .page-affiliate-program-agent-registration-entrance__hero-subtitle {
        font-size: 1em;
    }
    .page-affiliate-program-agent-registration-entrance__section-title,
    .page-affiliate-program-agent-registration-entrance__cta-title {
        font-size: 1.8em;
    }
    .page-affiliate-program-agent-registration-entrance__section-description,
    .page-affiliate-program-agent-registration-entrance__cta-description {
        font-size: 0.95em;
    }
    .page-affiliate-program-agent-registration-entrance__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-affiliate-program-agent-registration-entrance__btn--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
    .page-affiliate-program-agent-registration-entrance__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        margin: -50px auto 20px;
    }
    .page-affiliate-program-agent-registration-entrance__hero-section,
    .page-affiliate-program-agent-registration-entrance__section,
    .page-affiliate-program-agent-registration-entrance__cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-affiliate-program-agent-registration-entrance__hero-title {
        font-size: 1.8em;
    }
    .page-affiliate-program-agent-registration-entrance__section-title,
    .page-affiliate-program-agent-registration-entrance__cta-title {
        font-size: 1.5em;
    }
    .page-affiliate-program-agent-registration-entrance__container {
        padding: 0 15px;
    }
}