.vendor-section {
    padding: 80px 0;
    background-color: #e4f1f3;
}

.vendor-section-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    padding: 0 40px;
}

.vendor-section-image {
    flex: 1;
    text-align: center;
}

.vendor-section-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vendor-section-text {
    flex: 1;
}

.vendor-section-text h2 {
    font-size: 32px;
    color: #257d87;
    margin-bottom: 20px;
}

.vendor-section-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.vendor-section-text ul {
    list-style: none;
    padding: 0;
}

.vendor-section-text li {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.vendor-section-text li .icon {
    margin-right: 10px;
    font-size: 20px;
    color: #257d87;
}

.vendor-section-text li a {
    color: #2C95A0;
    text-decoration: none;
    font-weight: bold;
}

.vendor-section-text li a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .vendor-section-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .vendor-section-content {
        flex-direction: column;
    }
    .vendor-section-text h2 {
        font-size: 28px;
    }
}
