﻿<style >
.legal-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.legal-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2.2rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.accordion-checkbox {
    display: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #2c3e50;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    user-select: none;
    transition: background 0.3s ease;
}

    .accordion-header:hover {
        background: #34495e;
    }

.arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.content-inner {
    padding: 30px;
}

/* Açık durumda */
.accordion-checkbox:checked + .accordion-header .arrow {
    transform: rotate(180deg);
}

.accordion-checkbox:checked ~ .accordion-content {
    max-height: 5000px;
}

/* İçerik stilleri */
.legal-section-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

    .legal-section-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .legal-section-item h4 {
        color: #495057;
        font-size: 1.15rem;
        font-weight: 600;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #007bff;
    }

    .legal-section-item p {
        margin-bottom: 15px;
        line-height: 1.7;
        color: #495057;
        text-align: justify;
    }

    .legal-section-item ul, .legal-section-item ol {
        margin: 15px 0;
        padding-left: 25px;
    }

    .legal-section-item li {
        margin-bottom: 10px;
        line-height: 1.6;
        color: #495057;
    }

.highlight-box {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #ffc107;
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlight-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff8f00;
    line-height: 1;
}

.highlight-content strong {
    display: block;
    margin-bottom: 5px;
    color: #856404;
}

.highlight-content p {
    margin: 0;
    color: #856404;
}

.payment-options {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.payment-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.payment-option strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}

.payment-option p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.security-note {
    background: #d1ecf1;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #17a2b8;
    color: #0c5460;
    margin-top: 20px;
}

.warranty-rights {
    background: #e7f3ff;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}

    .warranty-rights strong {
        display: block;
        margin-bottom: 10px;
        color: #004085;
    }

    .warranty-rights ol {
        margin: 10px 0 0 0;
    }

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #28a745;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-section {
        padding: 40px 0;
    }

        .legal-section h2 {
            font-size: 1.8rem;
        }

    .accordion-header {
        padding: 15px 20px;
        font-size: 1.05rem;
    }

    .content-inner {
        padding: 20px;
    }

    .highlight-box {
        flex-direction: column;
        text-align: center;
    }

    .payment-option {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .accordion-header span:first-child {
        font-size: 0.95rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }
}

</style >
