/* HERO BÖLÜMÜ */
    .about-hero {
        position: relative;
        height: 60vh;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        /* Arkaplanı kendi marka görselinizle değiştirebilirsiniz */
        background: linear-gradient(to bottom, rgba(17,17,17,0.4) 0%, rgba(17,17,17,1) 100%), 
                    url('banner.webp') center/cover no-repeat;
        margin-top: 80px; /* Navbar boşluğu */
    }

    .about-hero-content {
        max-width: 800px;
        padding: 0 20px;
        animation: fadeInUp 1s ease-out forwards;
    }

    .about-hero-content h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 54px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--text-light);
    }

    .about-hero-content h1 span {
        color: var(--primary-red);
        font-style: italic;
        font-weight: 400;
    }

    .about-hero-content p {
        color: var(--text-muted);
        font-size: 18px;
        line-height: 1.6;
    }

    /* HİKAYEMİZ BÖLÜMÜ (İkili Grid) */
    .story-section {
        padding: 100px 0;
    }

    .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .story-image-wrapper {
        position: relative;
        padding: 20px;
    }

    /* Altın rengi lüks çerçeve efekti */
    .story-image-wrapper::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        border: 2px solid var(--primary-red);
        border-radius: 20px;
        transform: translate(20px, 20px);
        z-index: 1;
        opacity: 0.5;
        transition: transform 0.5s ease;
    }

    .story-image-wrapper:hover::before {
        transform: translate(10px, 10px);
    }

    .story-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        z-index: 2;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    }

    .story-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.7s ease;
    }

    .story-image-wrapper:hover .story-image img {
        transform: scale(1.05);
    }

    .story-content h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 36px;
        font-weight: 600;
        color: var(--text-light);
        margin-bottom: 20px;
    }

    .story-content h2 span {
        color: var(--primary-red);
    }

    .story-content p {
        color: var(--text-muted);
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    /* FELSEFEMİZ / DEĞERLERİMİZ BÖLÜMÜ */
    .values-section {
        background-color: var(--bg-card);
        padding: 100px 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .section-title p {
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .value-card {
        background: var(--bg-main);
        padding: 40px 30px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.03);
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .value-card::after {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .value-card:hover {
        transform: translateY(-10px);
        border-color: var(--border-color);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .value-card:hover::after {
        opacity: 1;
    }

    .value-icon {
        font-size: 40px;
        color: var(--primary-red);
        margin-bottom: 20px;
    }

    .value-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--text-light);
    }

    .value-card p {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.6;
    }

    /* VURGULU SÖZ (QUOTE) BÖLÜMÜ */
    .quote-section {
        padding: 120px 20px;
        text-align: center;
        background: radial-gradient(circle at center, rgba(211, 176, 93, 0.05) 0%, var(--bg-main) 60%);
    }

    .quote-icon {
        font-size: 30px;
        color: var(--primary-red);
        margin-bottom: 20px;
        opacity: 0.5;
    }

    .quote-text {
        font-family: 'Montserrat', sans-serif;
        font-size: 32px;
        font-weight: 300;
        font-style: italic;
        color: var(--text-light);
        max-width: 900px;
        margin: 0 auto 30px;
        line-height: 1.5;
    }

    .quote-author {
        font-size: 16px;
        color: var(--primary-red);
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    /* MOBİL UYUMLULUK */
    @media (max-width: 992px) {
        .story-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }
        .story-image-wrapper {
            max-width: 600px;
            margin: 0 auto;
        }
        .about-hero-content h1 {
            font-size: 42px;
        }
    }

    @media (max-width: 768px) {
        .quote-text {
            font-size: 24px;
        }
        .story-content h2 {
            font-size: 28px;
            text-align: center;
        }
        .story-content p {
            text-align: center;
        }
        .story-content{
            text-align: center;
        }
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }