/*==================================
  Hakkımızda Sayfası Stilleri
==================================*/

/* Genel Sayfa Düzeni */
.about-page {
    padding: 0 0 80px 0;
    min-height: calc(100vh - 100px); /* Header ve footer yüksekliğini hesaba katın */
}

/* İlk Bölüm: Hoş Geldiniz ve Görsel */
.about-hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    background-color: var(--bg-color); /* Ana arka plan rengi */
    color: var(--text-color); /* Ana metin rengi */
}

.about-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.about-hero-text {
    flex: 1;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color);
}

.about-hero-paragraph {
    font-size: 18px;
    line-height: 1.7;
    color: var(--secondary-text-color);
}

.about-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-visual img {
    max-width: 100%;
    height: auto;
}

/* İkinci Bölüm: Üçlü Özellikler */
.about-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 20px 0;
}

.feature-item {
    flex: 1;
    padding: 20px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.feature-subtitle {
    font-size: 16px;
    color: var(--secondary-text-color);
}

/* Üçüncü Bölüm: CoinTR Nedir? */
.about-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background-color: var(--card-bg-color); /* Kart arka plan rengi */
    padding: 40px;
    border-radius: 15px;
}

.about-text {
    flex: 1;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color); /* Ana yeşil renk */
    margin-bottom: 30px;
}

.main-paragraph {
    font-size: 18px;
    line-height: 1.7;
    color: var(--secondary-text-color);
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual img {
    max-width: 100%;
    height: auto;
}

/*==================================
  Responsive Tasarım
==================================*/
@media (max-width: 992px) {
    .about-hero-content,
    .about-main-content {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-text,
    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .about-features {
        flex-direction: column;
        gap: 30px;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .about-hero-paragraph {
        font-size: 16px;
    }

    .main-title {
        font-size: 32px;
    }

    .main-paragraph {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 32px;
    }

    .main-title {
        font-size: 28px;
    }

    .main-paragraph {
        font-size: 15px;
    }
}