/**
 * Yasal Sayfalar - Modern Tasarım
 * Teslimat-İade, Gizlilik, Mesafeli Satış sayfaları için
 */

.legal-page-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.legal-page-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8eef5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.legal-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #041738;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ffd200;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section-title i {
    color: #ffd200;
    font-size: 32px;
}

.legal-subsection {
    margin-bottom: 35px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #041738;
    transition: all 0.3s ease;
}

.legal-subsection:hover {
    background: #f1f5f9;
    border-left-color: #ffd200;
    transform: translateX(5px);
}

.legal-subsection-title {
    font-size: 20px;
    font-weight: 700;
    color: #041738;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-subsection-title i {
    color: #ffd200;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.legal-subsection p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 12px;
}

.legal-subsection ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.legal-subsection ul li {
    padding: 10px 0 10px 30px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 15px;
    position: relative;
    border-bottom: 1px solid #e8eef5;
}

.legal-subsection ul li:last-child {
    border-bottom: none;
}

.legal-subsection ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #ffd200;
    font-size: 14px;
    font-weight: 600;
}

.legal-subsection strong {
    color: #041738;
    font-weight: 700;
}

.legal-subsection a {
    color: #041738;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #ffd200;
    transition: all 0.3s ease;
}

.legal-subsection a:hover {
    color: #ffd200;
    border-bottom-color: #041738;
}

.legal-info-box {
    background: linear-gradient(135deg, #041738 0%, #0a2d5c 100%);
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(4, 23, 56, 0.2);
}

.legal-info-box h4 {
    color: #ffd200;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-info-box h4 i {
    font-size: 24px;
}

.legal-info-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 15px;
}

.legal-info-box a {
    color: #ffd200;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-info-box a:hover {
    color: #fff;
    text-decoration: underline;
}

.legal-highlight {
    background: #fff3cd;
    border: 1px solid #ffd200;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.legal-highlight i {
    color: #ffd200;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.legal-highlight p {
    margin: 0;
    color: #856404;
    font-weight: 500;
    line-height: 1.6;
}

.legal-badge {
    display: inline-block;
    background: #ffd200;
    color: #041738;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page-content {
        padding: 40px 0;
    }

    .legal-section {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .legal-section-title {
        font-size: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .legal-section-title i {
        font-size: 28px;
    }

    .legal-subsection {
        padding: 20px;
    }

    .legal-subsection-title {
        font-size: 18px;
    }

    .legal-info-box {
        padding: 25px 20px;
    }
}
