/* About Section Styles */
.about-section {
    background: #ffffff;
    padding: 80px 0;
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.team-image {
    border-radius: 20px !important;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Section Title */
.section-title {
    color: #0b3b64;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

/* Section Description */
.section-description {
    font-size: 18px;
    color: #0b3b64;
    line-height: 1.8;
    margin-bottom: 32px;
}

.section-description strong {
    font-weight: 600;
}

/* Feature List */
.feature-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.feature-item {
    font-size: 17px;
    color: #0b3b64;
    margin-bottom: 14px;
    line-height: 1.6;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item strong {
    font-weight: 600;
    color: #0b3b64;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section-title {
        font-size: 36px;
    }
    
    .about-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .section-description,
    .feature-item {
        font-size: 16px;
    }
    
    .about-section {
        padding: 40px 0;
    }
}