/* 
 * Hakkımızda Bölümü Stilleri
 */

.about-section {
    padding: 80px 0;
    transition: all 0.3s ease;
}

.about-section.bg-light {
    background-color: #f8f9fa;
}

.about-section.bg-dark {
    background-color: #343a40;
}

.about-section .section-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.bg-light .section-title {
    color: #333;
}

.bg-dark .section-title {
    color: #fff;
}

.about-section .section-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
}

.bg-light .section-subtitle {
    color: #6c757d;
}

.bg-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.about-section .section-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.bg-light .section-content {
    color: #555;
}

.bg-dark .section-content {
    color: rgba(255, 255, 255, 0.9);
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-button .iamhere-button {
    padding: 10px 30px;
    font-weight: 500;
    background-color: var(--iamhere-primary-color, #0d6efd);
    border-color: var(--iamhere-primary-color, #0d6efd);
    color: #fff;
    transition: all 0.3s ease;
}

.about-button .iamhere-button:hover {
    background-color: var(--iamhere-primary-color, #0d6efd);
    opacity: 0.9;
}

/* Responsive Ayarlamalar */
@media (max-width: 991.98px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-content {
        font-size: 1rem;
    }
    
    .about-section .ps-lg-5 {
        padding-left: 0 !important;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .about-section .section-title {
        font-size: 1.8rem;
    }
    
    .about-section .section-subtitle {
        font-size: 1.15rem;
    }
}

@media (max-width: 575.98px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-button .iamhere-button {
        padding: 8px 25px;
        font-size: 0.95rem;
    }
}