.owc-about {
    margin-top: 100px;
    background: #ffffff;
}

.owc-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Image */
.owc-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.owc-image img {
    width: 100%;
    height:600px;
    border-radius: 12px;
    object-fit: contain; /* prevents image cropping */
}

/* Right Content */
.owc-content {
    flex: 1.2;
}

.owc-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.owc-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.owc-content ul {
    margin-top: 15px;
    padding-left: 20px;
}

.owc-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

/* Responsive */
@media (max-width: 900px) {
    .owc-container {
        flex-direction: column;
        text-align: center;
    }
}
