/* style/affiliate-program-promotion-tools.css */

.page-affiliate-program-promotion-tools {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1A2C42; /* Main dark background */
}

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

.page-affiliate-program-promotion-tools__section-title {
    font-size: 2.5em;
    color: #E0B147; /* Accent color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-affiliate-program-promotion-tools__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E0B147;
    border-radius: 2px;
}

.page-affiliate-program-promotion-tools__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: -20px auto 60px auto;
    color: #cccccc;
}

/* Hero Section */
.page-affiliate-program-promotion-tools__hero {
    background: linear-gradient(135deg, #1A2C42 0%, #3a5c82 100%); /* Dark gradient */
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-affiliate-program-promotion-tools__hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-affiliate-program-promotion-tools__hero-title {
    font-size: 3.5em;
    color: #E0B147; /* Accent color */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-affiliate-program-promotion-tools__hero-subtitle {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-affiliate-program-promotion-tools__hero-image-wrapper {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-affiliate-program-promotion-tools__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-affiliate-program-promotion-tools__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    margin-right: 15px;
    margin-bottom: 15px;
}

.page-affiliate-program-promotion-tools__btn--primary {
    background-color: #E0B147;
    color: #1A2C42;
    border: 2px solid #E0B147;
}

.page-affiliate-program-promotion-tools__btn--primary:hover {
    background-color: #f5c765;
    border-color: #f5c765;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 177, 71, 0.4);
}

.page-affiliate-program-promotion-tools__btn--secondary {
    background-color: #1A2C42;
    color: #E0B147;
    border: 2px solid #E0B147;
}

.page-affiliate-program-promotion-tools__btn--secondary:hover {
    background-color: #2a405a;
    color: #f5c765;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 177, 71, 0.2);
}

.page-affiliate-program-promotion-tools__btn--ghost {
    background: none;
    color: #E0B147;
    border: 2px solid #E0B147;
}

.page-affiliate-program-promotion-tools__btn--ghost:hover {
    background-color: #E0B147;
    color: #1A2C42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 177, 71, 0.4);
}

/* Benefits Section */
.page-affiliate-program-promotion-tools__benefits {
    background-color: #253952; /* Slightly lighter dark background */
    text-align: center;
}

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

.page-affiliate-program-promotion-tools__benefit-item {
    background-color: #1A2C42;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-affiliate-program-promotion-tools__benefit-item:hover {
    transform: translateY(-10px);
}

.page-affiliate-program-promotion-tools__benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(224, 177, 71, 0.5));
}

.page-affiliate-program-promotion-tools__benefit-title {
    font-size: 1.5em;
    color: #E0B147;
    margin-bottom: 15px;
}

.page-affiliate-program-promotion-tools__benefit-description {
    font-size: 1em;
    color: #cccccc;
    line-height: 1.6;
}

/* Tools Section */
.page-affiliate-program-promotion-tools__tools {
    background-color: #1A2C42;
    text-align: center;
}

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

.page-affiliate-program-promotion-tools__tool-item {
    background-color: #253952;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    text-align: left;
}

.page-affiliate-program-promotion-tools__tool-item:hover {
    transform: translateY(-10px);
}

.page-affiliate-program-promotion-tools__tool-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(224, 177, 71, 0.5));
}

.page-affiliate-program-promotion-tools__tool-title {
    font-size: 1.4em;
    color: #E0B147;
    margin-bottom: 10px;
}

.page-affiliate-program-promotion-tools__tool-description {
    font-size: 0.95em;
    color: #cccccc;
    line-height: 1.6;
}

/* Support Section */
.page-affiliate-program-promotion-tools__support {
    background-color: #253952;
    text-align: center;
}

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

.page-affiliate-program-promotion-tools__support-item {
    background-color: #1A2C42;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-affiliate-program-promotion-tools__support-item:hover {
    transform: translateY(-10px);
}

.page-affiliate-program-promotion-tools__support-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(224, 177, 71, 0.5));
}

.page-affiliate-program-promotion-tools__support-title {
    font-size: 1.5em;
    color: #E0B147;
    margin-bottom: 15px;
}

.page-affiliate-program-promotion-tools__support-description {
    font-size: 1em;
    color: #cccccc;
    line-height: 1.6;
}

/* Call to Action Section */
.page-affiliate-program-promotion-tools__cta {
    background: linear-gradient(45deg, #1A2C42, #3a5c82); /* Dark gradient */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-affiliate-program-promotion-tools__cta-content {
    flex: 1;
    min-width: 300px;
    max-width: 700px;
}

.page-affiliate-program-promotion-tools__cta-title {
    font-size: 2.8em;
    color: #E0B147;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-affiliate-program-promotion-tools__cta-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-affiliate-program-promotion-tools__cta-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-affiliate-program-promotion-tools__cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-affiliate-program-promotion-tools__faq {
    background-color: #1A2C42;
}

.page-affiliate-program-promotion-tools__faq-item {
    background-color: #253952;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-affiliate-program-promotion-tools__faq-question {
    font-size: 1.3em;
    color: #E0B147;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

.page-affiliate-program-promotion-tools__faq-answer {
    font-size: 1em;
    color: #cccccc;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-affiliate-program-promotion-tools__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-affiliate-program-promotion-tools__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-affiliate-program-promotion-tools__hero-content,
    .page-affiliate-program-promotion-tools__hero-image-wrapper {
        min-width: unset;
        width: 100%;
    }

    .page-affiliate-program-promotion-tools__hero-title {
        font-size: 2.8em;
    }

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

    .page-affiliate-program-promotion-tools__cta {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-affiliate-program-promotion-tools__hero-title {
        font-size: 2.2em;
    }

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

    .page-affiliate-program-promotion-tools__section {
        padding: 40px 15px;
    }

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

    .page-affiliate-program-promotion-tools__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .page-affiliate-program-promotion-tools__benefits-grid,
    .page-affiliate-program-promotion-tools__tools-grid,
    .page-affiliate-program-promotion-tools__support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-affiliate-program-promotion-tools__hero-title {
        font-size: 1.8em;
    }

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

    .page-affiliate-program-promotion-tools__btn {
        width: 100%;
        margin-right: 0;
    }

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