/* Legal Page Styles (Privacy, Terms, KVKK) */
.legal-page {
    padding: 80px 0 100px;
    background: #fff;
}

.legal-hero {
    text-align: center;
    margin-bottom: 60px;
}

.legal-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 20px;
    font-family: var(--font-heading);
}

.legal-hero h1 i {
    color: var(--primary);
    margin-right: 15px;
}

.legal-hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.legal-content-section {
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
}

.legal-card-header {
    background: #fdfdfd;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.legal-card-header .meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.legal-card-header .meta i {
    color: var(--primary);
}

.legal-card-body {
    padding: 40px;
}

.legal-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

.legal-text h2,
.legal-text h3,
.legal-text h4 {
    color: var(--text-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.legal-text h2 {
    font-size: 1.4rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-text li {
    margin-bottom: 10px;
}

.legal-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* Empty State */
.legal-empty {
    text-align: center;
    padding: 60px 40px;
    background: #f9f9f9;
}

.legal-empty i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 20px;
}

.legal-empty h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

/* Navigation Links */
.legal-nav {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-nav a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #fff;
    border: 1px solid #ddd;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-nav a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.legal-nav a.active {
    background: #000;
    border-color: #000;
    color: #fff;
}
