/* style/affiliate-program-overview.css */
.page-affiliate-program-overview {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-affiliate-program-overview__hero-section {
    background: linear-gradient(135deg, #0056b3, #003d80);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-affiliate-program-overview__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,dark_blue_gold]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 1;
}

.page-affiliate-program-overview__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffd700;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.page-affiliate-program-overview__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.page-affiliate-program-overview__cta-button {
    display: inline-block;
    background-color: #ffd700;
    color: #0056b3;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
}

.page-affiliate-program-overview__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    border-color: #0056b3;
}

.page-affiliate-program-overview__cta-button--large {
    padding: 20px 40px;
    font-size: 1.4em;
}

.page-affiliate-program-overview__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-affiliate-program-overview__section:nth-of-type(even) {
    background-color: #f0f4f8;
}

.page-affiliate-program-overview__section-title {
    font-size: 2.5em;
    color: #0056b3;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.page-affiliate-program-overview__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffd700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-affiliate-program-overview__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-affiliate-program-overview__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.page-affiliate-program-overview__text-content {
    flex: 1;
    font-size: 1.1em;
    color: #444;
}

.page-affiliate-program-overview__text-content p {
    margin-bottom: 15px;
}

.page-affiliate-program-overview__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-affiliate-program-overview__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-affiliate-program-overview__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-affiliate-program-overview__benefit-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-affiliate-program-overview__benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-affiliate-program-overview__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-affiliate-program-overview__card-title {
    font-size: 1.6em;
    color: #0056b3;
    margin-bottom: 15px;
}

.page-affiliate-program-overview__benefit-card p {
    color: #666;
    font-size: 1em;
}

.page-affiliate-program-overview__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-affiliate-program-overview__step-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border: 1px solid #e0e0e0;
}

.page-affiliate-program-overview__step-number {
    background-color: #ffd700;
    color: #0056b3;
    font-size: 2em;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 20px auto;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-affiliate-program-overview__commission-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-affiliate-program-overview__commission-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.page-affiliate-program-overview__commission-table th,
.page-affiliate-program-overview__commission-table td {
    padding: 15px;
    border: 1px solid #eee;
    text-align: left;
}

.page-affiliate-program-overview__commission-table th {
    background-color: #0056b3;
    color: #fff;
    font-weight: bold;
}

.page-affiliate-program-overview__commission-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.page-affiliate-program-overview__commission-table tr:hover {
    background-color: #eef;
}

.page-affiliate-program-overview__note {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 20px;
    font-size: 0.95em;
}

.page-affiliate-program-overview__commission-image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.page-affiliate-program-overview__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.page-affiliate-program-overview__feature-list li {
    background-color: #f0f8ff;
    padding: 20px;
    border-left: 5px solid #0056b3;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-affiliate-program-overview__feature-list li strong {
    color: #0056b3;
}

.page-affiliate-program-overview__faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-affiliate-program-overview__faq-question {
    font-size: 1.3em;
    color: #0056b3;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-affiliate-program-overview__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.page-affiliate-program-overview__faq-item.active .page-affiliate-program-overview__faq-question::after {
    transform: rotate(45deg);
}

.page-affiliate-program-overview__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
}

.page-affiliate-program-overview__faq-item.active .page-affiliate-program-overview__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-affiliate-program-overview__join-us {
    background-color: #0056b3;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-affiliate-program-overview__join-us .page-affiliate-program-overview__section-title {
    color: #ffd700;
}

.page-affiliate-program-overview__join-us .page-affiliate-program-overview__section-title::after {
    background-color: #ffd700;
}

.page-affiliate-program-overview__join-us .page-affiliate-program-overview__section-description {
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-affiliate-program-overview__hero-title {
        font-size: 2.8em;
    }

    .page-affiliate-program-overview__hero-subtitle {
        font-size: 1.3em;
    }

    .page-affiliate-program-overview__section-title {
        font-size: 2em;
    }

    .page-affiliate-program-overview__content-grid {
        flex-direction: column;
    }

    .page-affiliate-program-overview__feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-affiliate-program-overview__hero-section {
        padding: 80px 0;
    }

    .page-affiliate-program-overview__hero-title {
        font-size: 2.2em;
    }

    .page-affiliate-program-overview__hero-subtitle {
        font-size: 1.1em;
    }

    .page-affiliate-program-overview__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-affiliate-program-overview__section {
        padding: 40px 0;
    }

    .page-affiliate-program-overview__section-title {
        font-size: 1.8em;
    }

    .page-affiliate-program-overview__benefits-grid,
    .page-affiliate-program-overview__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-affiliate-program-overview__step-number {
        margin-top: -40px;
    }

    .page-affiliate-program-overview__commission-image {
        max-width: 95%;
    }

    .page-affiliate-program-overview__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-affiliate-program-overview__hero-section {
        padding: 60px 0;
    }

    .page-affiliate-program-overview__hero-title {
        font-size: 1.8em;
    }

    .page-affiliate-program-overview__hero-subtitle {
        font-size: 1em;
    }

    .page-affiliate-program-overview__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-affiliate-program-overview__section {
        padding: 30px 0;
    }

    .page-affiliate-program-overview__section-title {
        font-size: 1.5em;
    }

    .page-affiliate-program-overview__card-title {
        font-size: 1.4em;
    }

    .page-affiliate-program-overview__benefit-icon {
        width: 60px;
        height: 60px;
    }

    .page-affiliate-program-overview__commission-table th,
    .page-affiliate-program-overview__commission-table td {
        padding: 10px;
        font-size: 0.9em;
    }

    .page-affiliate-program-overview__faq-question {
        font-size: 1em;
    }
}