/* Hakkımızda Sayfası CSS */

.b-about-main {
    padding: 60px 0;
}

.b-about-content {
    padding-right: 30px;
}

.b-about-main__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ui-decor {
    width: 60px;
    height: 3px;
    margin-bottom: 30px;
    border-radius: 2px;
}

.b-about-main__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

.b-about-image {
    text-align: center;
    padding: 20px;
}

.b-about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.b-about-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .b-about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .b-about-main__title {
        font-size: 2rem;
    }
    
    .b-about-main {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .b-about-main__title {
        font-size: 1.8rem;
    }
    
    .b-about-main__description {
        font-size: 1rem;
    }
}
