/* Legal Pages Styling - Keyfill Technologies */

.kt-legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0px;
}

.kt-legal-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    color: #333;
}

.kt-legal-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.kt-legal-section:last-child {
    border-bottom: none;
}

.kt-legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #060606;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #f15b26;
    display: inline-block;
}

.kt-legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-top: 10px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.kt-legal-section p {
    margin-bottom: 15px;
    font-size: 15px;
    letter-spacing: 1px;
}

.kt-legal-section ul,
.kt-legal-section ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.kt-legal-section li {
    margin-bottom: 10px;
    line-height: 1.8;
    list-style: disc;
    font-size: 15px;
    letter-spacing: 1px;
}

.kt-legal-section strong {
    color: #f15b26;
    font-weight: 600;
}

.kt-legal-highlight {
    background-color: #fff3cd;
    padding: 20px;
    border-left: 4px solid #ff6b6b;
    margin: 20px 0;
    border-radius: 4px;
}

.kt-legal-highlight p {
    margin: 0;
    color: #856404;
    letter-spacing: 1px;
}

.kt-legal-contact {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.kt-legal-contact h3 {
    color: #f15b26;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.kt-legal-contact p {
    margin-bottom: 10px;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

.kt-legal-contact a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.kt-legal-contact a:hover {
    color: #001a4d;
}

.kt-legal-button {
    display: inline-block;
    background: linear-gradient(135deg, #f15b26 0%, #ff4c0d 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.kt-legal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.kt-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

.kt-table thead {
    background: #001a4d;
    color: white;
}

.kt-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.kt-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

.kt-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.kt-table tbody tr:hover {
    background-color: #e8eef5;
}



/* Responsive Design */
@media (max-width: 768px) {
    .kt-legal-content {
        padding: 20px;
    }

    .kt-legal-section h2 {
        font-size: 1.4rem;
    }

    .kt-legal-section h3 {
        font-size: 1.1rem;
    }

    .kt-legal-section p {
        font-size: 0.95rem;
    }

    .kt-table th,
    .kt-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .kt-legal-container {
        padding: 20px 10px;
    }

    .kt-legal-content {
        padding: 15px;
    }

    .kt-legal-button {
        width: 100%;
        text-align: center;
    }
}