/* style/partners.css */
.page-partners {
    font-family: 'Arial', sans-serif;
    color: #f8f8f8; /* Light text for dark backgrounds */
    line-height: 1.6;
    background-color: #1a1a1a; /* Very dark background */
}

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

.page-partners__hero-section {
    background: linear-gradient(135deg, #C0392B, #2C3E50);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-partners__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    animation: page-partners__pulse 10s infinite alternate;
}

@keyframes page-partners__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

.page-partners__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #f3f3f3;
}

.page-partners__highlight {
    color: #F39C12; /* Emphasize color */
}

.page-partners__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-partners__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-partners__btn--primary {
    background-color: #F39C12; /* Emphasize color for CTA */
    color: #2C3E50;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.page-partners__btn--primary:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

.page-partners__btn--secondary {
    background-color: #2C3E50;
    color: #ffffff;
    border: 2px solid #C0392B;
    margin-left: 15px;
}

.page-partners__btn--secondary:hover {
    background-color: #C0392B;
    border-color: #F39C12;
    transform: translateY(-3px);
    color: #ffffff;
}

.page-partners__intro-section, 
.page-partners__key-partners-section, 
.page-partners__benefits-section, 
.page-partners__cta-section, 
.page-partners__faq-section {
    padding: 60px 0;
    background-color: #2c3e50; /* Auxiliary color as background */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-partners__intro-section {
    background-color: #1a1a1a;
    color: #f8f8f8;
}

.page-partners__key-partners-section {
    background-color: #2c3e50;
    color: #e0e0e0;
}

.page-partners__benefits-section {
    background-color: #1a1a1a;
    color: #f8f8f8;
}

.page-partners__cta-section {
    background: linear-gradient(135deg, #C0392B, #F39C12);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-partners__faq-section {
    background-color: #2c3e50;
    color: #e0e0e0;
}

.page-partners__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #F39C12; /* Emphasize color for titles */
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-partners__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #e0e0e0;
}

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

.page-partners__grid-item {
    background-color: #3a4a5c; /* Slightly lighter than auxiliary for contrast */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(192, 57, 43, 0.5);
}

.page-partners__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-partners__item-title {
    font-size: 1.8em;
    color: #C0392B; /* Primary color for item titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-partners__item-description {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 25px;
}

.page-partners__benefits-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-partners__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-partners__faq-item {
    background-color: #3a4a5c;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(192, 57, 43, 0.3);
}

.page-partners__faq-question {
    font-size: 1.3em;
    color: #F39C12; /* Emphasize color for questions */
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-partners__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-partners__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-partners__faq-answer {
    font-size: 1em;
    color: #c0c0c0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-partners__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-partners__image-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-partners__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid #C0392B;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-partners__hero-title {
        font-size: 2.5em;
    }

    .page-partners__hero-description {
        font-size: 1.1em;
    }

    .page-partners__section-title {
        font-size: 2em;
    }

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

    .page-partners__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-partners__btn {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-partners__hero-title {
        font-size: 2em;
    }

    .page-partners__hero-description {
        font-size: 1em;
    }

    .page-partners__section-title {
        font-size: 1.8em;
    }

    .page-partners__item-title {
        font-size: 1.5em;
    }

    .page-partners__faq-question {
        font-size: 1.1em;
    }
}