/* Partners Section - Figma Design */
.partners-section {
    background-color: #E8E2D9; /* Beige background like in Figma */
    padding: 80px 0;
    position: relative;
}

.partners-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Partners Group Styling */
.partners-group {
    margin-bottom: 60px;
}

.member-group {
    margin-top: 40px;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.orange-bar {
    width: 6px;
    height: 60px;
    background-color: #DE5700;
    border-radius: 3px;
    flex-shrink: 0;
}

.section-title {
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    font-size: 55px;
    font-weight: bold;
    color: #3A3A3A;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Partners Content */
.partners-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 26px; /* Align with title after orange bar */
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item img {
    max-height: 120px;
    max-width: 400px;
    object-fit: contain;
    filter: none;
}

/* Member Content */
.member-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    padding-left: 26px; /* Align with title after orange bar */
    flex-wrap: wrap;
}

.member-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.member-item img {
    max-height: 90px;
    max-width: 200px;
    object-fit: contain;
    filter: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .orange-bar {
        height: 40px;
        width: 4px;
    }

    .section-header {
        gap: 15px;
        margin-bottom: 30px;
    }

    .partners-content,
    .member-content {
        padding-left: 19px; /* Adjust for smaller orange bar */
        justify-content: center;
        text-align: center;
    }

    .member-content {
        gap: 20px;
    }

    .partner-item img {
        max-height: 90px;
        max-width: 350px;
    }

    .member-item img {
        max-height: 70px;
        max-width: 160px;
    }

    .partners-group {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .partners-section {
        padding: 60px 0;
    }

    .partners-content,
    .member-content {
        flex-direction: column;
        gap: 20px;
    }

    .partner-item img {
        max-height: 80px;
        max-width: 300px;
    }

    .member-item img {
        max-height: 60px;
        max-width: 140px;
    }
}
