/* Partner Section Styles */

.partner-section {
    font-family: 'ABC Normal', 'IBM Plex Sans', sans-serif;
    background-color: #ffffff;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
    color: #242424;
    padding: 80px 20px;
}

.partner-content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.partner-text-column {
    flex: 1;
}

.partner-image-column {
    flex: 1;
}

.partner-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 70px;
}

.partner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.partner-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 2rem;
}

.partner-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}

.partner-description p {
    margin-bottom: 1.5rem;
}

/* Benefits Card */
.partner-benefits-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.benefits-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
}

.benefits-icon {
    color: #ee0505;
    background: #ffeded;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transform: translateY(-2px);

}

.benefits-icon svg {
    width: 20px;
    height: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #242424;
}

.benefit-item p {
    margin: 0;
    display: inline-block;
    font-size: 1.2rem;
}

.benefit-item::before {
    content: "•";
    color: var(--primary-color, #ff3b30);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.2;
    transform: translateY(2px);
}

/* CTA Banner */
.partner-cta-banner {
    background-color: #242424;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
    color: #fff;
    padding: 80px 20px;
    margin-top: 80px;
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 600;
}

.cta-subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-white {
    background-color: #ffffff;
    color: #333;
    border-radius: 8px;
}


.btn-white:hover {
    background-image: linear-gradient(to bottom, rgba(255, 72, 72, 1) 0%, rgba(238, 5, 5, 1) 100%);
    background-color: transparent;
    color: #ffffff;
    border-color: transparent;
}


.btn-red {
    background-image: linear-gradient(to bottom, rgba(255, 72, 72, 1) 0%, rgba(238, 5, 5, 1) 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
}


.btn-red:hover {
    background-image: none;
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}


/* Responsive */
@media (max-width: 768px) {
    .partner-section {
        padding: 40px 15px;
    }

    .partner-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .partner-title {
        font-size: 2rem;
    }

    .partner-subtitle {
        font-size: 1.1rem;
    }

    .partner-description,
    .partner-description p {
        font-size: 0.95rem;
    }

    .benefits-title {
        font-size: 1.5rem;
    }

    .benefit-item p {
        font-size: 1rem;
    }

    .benefit-item::before {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .partner-image {
        border-radius: 10px;
        height: 250px;
        width: 100%;
        margin-top: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}