 /* Hakkımızda Sayfası Yeni Tasarım */

.about-container {
    padding-bottom: 60px;
    background-color: #ffffff;
}

/* Sayfa Başlık Şeridi */
.page-header-bar {
    background-color: #f8f9fa;
    border-bottom: 3px solid #f39200; /* Altın turuncu çizgi */
    padding: 30px 0;
    margin-bottom: 40px;
}

.container-title {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header-bar h1 {
    color: #1f3c88;
    font-size: 26px;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
}

.page-header-bar .sub-title {
    color: #f39200;
    font-weight: 500;
    font-size: 20px;
    text-transform: capitalize;
}

/* İçerik Alanı */
.about-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 50px;
    padding: 0 20px;
}

.about-text h2 {
    color: #1f3c88;
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #f39200;
}

.about-text p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
    font-size: 15px;
}

.services-list {
    list-style: none;
    padding: 20px;
    margin: 25px 0;
    background: #fcfcfc;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border: 1px solid #eee;
}

.services-list li {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.services-list i {
    color: #f39200;
    margin-right: 8px;
}

/* Sağdaki Oturum Kartı */
.special-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.07);
    border-top: 5px solid #1f3c88;
    position: sticky;
    top: 20px;
    text-align: center;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #f4f7fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.special-card i {
    font-size: 35px;
    color: #1f3c88;
}

.special-card h3 {
    color: #1f3c88;
    font-size: 19px;
    margin-bottom: 15px;
}

.special-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .about-content { grid-template-columns: 1fr; }
    .services-list { grid-template-columns: 1fr; }
    .page-header-bar h1 { font-size: 20px; }
}