/* ================================
   ABOUT PAGE STYLES
   Ermetal Alüminyum A.Ş.
================================ */

/* Genel ayarlar */
.about-content {
    padding: 70px 0;
    background-color: #f9fafb;
    font-family: "Inter", "Segoe UI", sans-serif;
    line-height: 1.8;
    color: #333;
}

/* Sayfa başlığı alanı */
.page-header {
    background: linear-gradient(135deg, #1f2933, #374151);
    padding: 60px 0;
    margin-bottom: 0;
}

.page-header h1 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}

/* Bölüm başlıkları */
.about-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1f2933;
    margin-top: 50px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.about-content h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 70%;
    background-color: #2563eb;
    border-radius: 3px;
}

/* Paragraflar */
.about-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #4b5563;
}

/* Güçlü vurgular */
.about-content strong {
    color: #1f2933;
    font-weight: 600;
}

/* Liste alanları */
.about-content ul {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.about-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #374151;
}

.about-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2563eb;
    font-weight: 700;
}

/* Misyon / Vizyon / Değerler blok hissi */
.about-content h2 + p,
.about-content h2 + ul {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Mobil uyum */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
        text-align: center;
    }

    .about-content {
        padding: 50px 0;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .about-content p,
    .about-content ul li {
        font-size: 15px;
    }
}
