/* ===================================
   Info Pages - Bilgilendirme Sayfaları
   Hakkımızda, İletişim, Sözleşmeler, SSS vb.
   =================================== */

.info-page {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl, 2rem) var(--spacing-lg, 1.5rem);
}

/* Hero Section */
.info-hero {
    text-align: center;
    margin-bottom: var(--spacing-2xl, 3rem);
    padding: var(--spacing-2xl, 3rem) var(--spacing-lg, 1.5rem);
    background: var(--card-bg, #1a1a2e);
    border-radius: 16px;
    border: 1px solid var(--border, #2a2a4a);
}

.info-hero-icon {
    font-size: 3rem;
    color: var(--primary, #8b5cf6);
    margin-bottom: var(--spacing-md, 1rem);
}

.info-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text, #fff);
    margin: 0 0 var(--spacing-sm, 0.5rem) 0;
}

.info-hero-text {
    font-size: 1.05rem;
    color: var(--text-muted, #a0a0c0);
    margin: 0;
    line-height: 1.6;
}

/* Content Section */
.info-content {
    background: var(--card-bg, #1a1a2e);
    border-radius: 16px;
    border: 1px solid var(--border, #2a2a4a);
    padding: var(--spacing-2xl, 3rem);
    line-height: 1.8;
    color: var(--text-secondary, #c0c0d8);
}

.info-content p {
    margin-bottom: 1rem;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.info-content b,
.info-content strong {
    color: var(--text, #fff);
    font-weight: 600;
}

.info-content h2,
.info-content p > b:only-child {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text, #fff);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary, #8b5cf6);
}

.info-content p > b:only-child {
    font-size: 1.2rem;
    border-bottom: none;
    color: var(--primary, #8b5cf6);
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text, #fff);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Lists */
.info-content ul,
.info-content ol {
    margin: 0.75rem 0 1rem 1.5rem;
    padding: 0;
}

.info-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.info-content li b,
.info-content li strong {
    color: var(--text, #fff);
}

.info-content ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Links */
.info-content a {
    color: var(--primary, #8b5cf6);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.info-content a:hover {
    border-bottom-color: var(--primary, #8b5cf6);
}

/* Tables */
.info-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.info-content th,
.info-content td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--border, #2a2a4a);
}

.info-content th {
    background: var(--bg, #0f0f23);
    color: var(--text, #fff);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .info-page {
        padding: var(--spacing-md, 1rem);
    }

    .info-hero {
        padding: var(--spacing-xl, 2rem) var(--spacing-md, 1rem);
    }

    .info-hero h1 {
        font-size: 1.5rem;
    }

    .info-content {
        padding: var(--spacing-lg, 1.5rem);
    }

    .info-content h2,
    .info-content p > b:only-child {
        font-size: 1.15rem;
    }
}
