/* Legal Pages Styles */

.header-legal {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    background: white;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 20px 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-legal .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
}

.header-legal .logo img {
    filter: invert(80%);
    height: 60px;
}

.legal-content {
    padding: 60px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.legal-content .last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
}

.legal-content section {
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #d7ea54;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 25px 0 15px;
    color: #333;
}

.legal-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content li {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-content a {
    color: #333;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #666;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.info-table th,
.info-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #E0E0E0;
    line-height: 1.6;
}

.info-table th {
    background: #FAFAFA;
    font-weight: 700;
    color: #333;
    width: 30%;
}

.info-table td {
    color: #555;
}

.legal-footer {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #E0E0E0;
}

/* Responsive */
@media (max-width: 768px) {
    .header-legal {
        padding: 20px 24px;
    }

    .header-legal .logo img {
        height: 40px;
    }

    .legal-content {
        padding: 40px 20px 60px;
    }

    .legal-content h1 {
        font-size: 24px;
    }

    .legal-content h2 {
        font-size: 18px;
    }

    .legal-content h3 {
        font-size: 16px;
    }

    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
    }

    .info-table th {
        border-bottom: none;
    }

    .info-table td {
        border-top: none;
    }
}
