/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #F0F3EF);
}

.partners-title-1 {
    color: #F0F3EF;
    font-size: 80px;
    font-family: 'Cormorant', serif;
    font-weight: 600;
    margin-bottom: -40px;
}

.partners-title-2 {
    color: var(--dark-purple);
    font-size: 44px;
    font-family: 'Cormorant', serif;
    font-weight: 600;
    position: relative;
}

.partners-title-2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    border-bottom: 1px solid var(--dark-purple);
}

.partner-logo {
    background: rgba(255, 255, 255, 0.40);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 6px;
    cursor: pointer;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
