.page-partnership {
    background-color: #0a0909; /* Deep dark background as per 3WIN style */
    color: #F4F7FB; /* Light text color for contrast */
    font-family: Arial, sans-serif;
    padding-top: 10px;
}

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

/* Hero Section */
.page-partnership__hero-section {
    background: linear-gradient(to bottom, #2d0000, #0a0909); /* Dark red gradient for hero */
    padding: 60px 0;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-partnership__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

.page-partnership__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); /* Darker shadow for dark background */
}

.page-partnership__hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-partnership__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #d6d604; /* Yellow-green accent for main title */
    margin-bottom: 15px;
}

.page-partnership__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #F4F7FB; /* Light text color */
}

.page-partnership__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient (blue) */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-partnership__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

/* Section Titles */
.page-partnership__section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #d6d604; /* Yellow-green accent for section titles */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    line-height: 1.3;
}

/* Benefits Section */
.page-partnership__benefits-section {
    padding: 60px 0;
    background-color: #1a0808; /* Slightly lighter dark background for contrast */
}

.page-partnership__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-partnership__benefit-card {
    background-color: #FFFFFF; /* Card background (white) */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF;
    color: #1F2D3D; /* Dark text for white card */
}

.page-partnership__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.page-partnership__benefit-icon {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    display: block;
}

.page-partnership__card-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1F2D3D; /* Dark text for white card */
    margin-bottom: 10px;
}

.page-partnership__card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D; /* Dark text for white card */
}

/* How to Join Section */
.page-partnership__how-to-join-section {
    padding: 60px 0;
    background-color: #0a0909; /* Dark background */
}

.page-partnership__steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-partnership__step-item {
    background-color: #1a0808; /* Slightly lighter dark background for step item */
    border-radius: 10px;
    padding: 25px 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #d6d604; /* Yellow-green accent */
    color: #F4F7FB; /* Light text */
}

.page-partnership__step-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d6d604; /* Yellow-green accent */
    margin-bottom: 10px;
}

.page-partnership__step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #F4F7FB; /* Light text */
}

.page-partnership__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-partnership__cta-button--large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* FAQ Section */
.page-partnership__faq-section {
    padding: 60px 0;
    background-color: #1a0808; /* Slightly lighter dark background */
}

.page-partnership__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-partnership__faq-item {
    background-color: #FFFFFF; /* Card background (white) */
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    color: #1F2D3D; /* Dark text for white card */
}

.page-partnership__faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1F2D3D; /* Dark text for question */
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    margin: 0;
    background-color: #F9FAFC; /* Lighter background for question */
    border-bottom: 1px solid #D6E2FF;
}

.page-partnership__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #2F6BFF; /* Primary blue for icon */
    transition: transform 0.3s ease;
}

.page-partnership__faq-item.active .page-partnership__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-partnership__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D; /* Dark text for answer */
    padding: 0 25px 20px 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-partnership__faq-item.active .page-partnership__faq-answer {
    max-height: 200px;
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-partnership__hero-section {
        padding: 40px 0;
    }

    .page-partnership__main-title {
        font-size: 2rem;
    }

    .page-partnership__description {
        font-size: 1rem;
    }

    .page-partnership__section-title {
        font-size: 1.8rem;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .page-partnership__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-partnership__benefit-card {
        padding: 20px;
    }

    .page-partnership__card-title {
        font-size: 1.2rem;
    }

    .page-partnership__step-item {
        padding: 20px;
    }

    .page-partnership__step-title {
        font-size: 1.3rem;
    }

    .page-partnership__cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .page-partnership__cta-button--large {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .page-partnership__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .page-partnership__faq-question::after {
        right: 20px;
        font-size: 1.2rem;
    }

    /* Content area images must not be smaller than 200px, and max-width: 100% for responsiveness */
    .page-partnership img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px; /* Ensure images are not too small */
    }
}

/* Global image CSS to avoid filters */
.page-partnership img {
    filter: none !important;
}