/* Ana Kapsayıcı */
.about-wrapper {
    background-color: var(--bg-dark);
    padding: 120px 0;
}

/* Hikaye Bölümü */
.about-story {
    margin-bottom: 120px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.about-image-col img {
    width: 100%;
    height: 100%;
    max-height: 700px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.about-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold-primary);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}
.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--gold-primary);
}
.about-text-col p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 20px;
    color: var(--text-muted);
}
.about-text-col p:last-child {
    margin-bottom: 0;
}

/* Değerlerimiz Bölümü */
.our-values .section-title {
    color: var(--text-light);
    margin-bottom: 80px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.value-item {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.value-item:hover {
    background-color: var(--bg-content);
    border-color: rgba(212, 175, 55, 0.3);
}
.value-icon {
    margin-bottom: 30px;
}
.value-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--gold-primary);
    stroke-width: 1.5;
}
.value-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-light);
}
.value-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-title {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-wrapper {
        /* Değişiklik burada yapıldı: üst boşluk artırıldı */
        padding: 120px 0 80px 0; 
    }
}