/* Hero Section */
.partners-hero {
    padding: 50px 0;
}

/* Partner Section Styles */
.partner-section {
    padding: 100px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.partner-section:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
}

.partner-section.alternate {
    background-color: #f9f9f9;
}

.partner-section.alternate:before {
    left: auto;
    right: 0;
}

.partner-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 300px;
}

.partner-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.partner-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    position: relative;
}

.partner-subtitle {
    font-size: 18px;
    color: #8c2b42;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.partner-subtitle:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #8c2b42;
}

.partner-description {
    font-size: 16px;
    line-height: 1.8;
}

.partner-description p {
    margin-bottom: 25px;
}

.partner-description h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.partner-services-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.partner-services-list li:before {
    content: "\f00c";
    font-family: "FontAwesome";
    color: #8c2b42;
    position: absolute;
    left: 0;
    top: 2px;
}

.service-name {
    display: block;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 5px;
    font-size: 16px;
}

.service-desc {
    display: block;
    color: #7f8c8d;
    font-size: 14px;
}

/* CTA Section */
.partner-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .partner-image {
        height: 240px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .partner-section {
        padding: 50px 0;
    }
}
