/* Client Section Styles */

.client-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: #000000;
    padding: 20px 20px 80px 20px;
}

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

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

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

.client-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;
}

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

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

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

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

/* Benefits Card */
.client-benefits-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 4rem;
    /* Add margin below card before CTA */
}

/* Using existing .benefits-* classes from partner.css (or repeating them here for safety) */
.benefits-title {
    font-size: 1.5rem;
    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);

}

/* Client specific CTA wrapper styling */
.client-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .client-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

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

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

    .client-image {
        max-width: 100%;
        height: 250px;
        margin-top: 20px;
    }
}