
           

    /* Terms Page Specific Styles */
    .legal-header {
        background: linear-gradient(135deg, #ffffff00, #ffffff00);
        color: white;
        padding: 50px 20px;
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        overflow: hidden;
    }

    .legal-header:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,100 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
        background-size: cover;
    }

    .legal-header-content {
        width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .legal-header h1 {
        font-size: 32px;
        color:black;
        margin-bottom: 10px;
    }

    .legal-header p {
        font-size: 16px;
        opacity: 0.9;
        color:black;
    }

    .last-updated {
        margin-top: 20px;
        font-size: 14px;
        opacity: 0.8;
        color:black;
    }

 .main-container {
    max-width: 50%;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 0;
 
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertical */
    min-height: 100vh;
}

    .legal-content {
        background:none;
        padding: 40px;
       

    }

    .legal-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid #eee;
    }

    .legal-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .legal-section h2 {
        color: #2c3e50;
        font-size: 22px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .legal-section h2 i {
        color: #f39c12;
        font-size: 20px;
    }

    .legal-section h3 {
        color: #34495e;
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .legal-section p {
        color: #555;
        line-height: 1.7;
        margin-bottom: 15px;
        font-size: 15px;
    }

    .legal-section ul, 
    .legal-section ol {
        margin: 15px 0 15px 30px;
        color: #555;
        line-height: 1.7;
    }

    .legal-section li {
        margin-bottom: 8px;
    }

    .legal-section strong {
        color: #f39c12;
        font-weight: 600;
    }

    .legal-note {
        background: #f8f9fa;
        padding: 20px;
        margin: 20px 0;
        border-left: 3px solid #f39c12;
    }

    .legal-note p:last-child {
        margin-bottom: 0;
    }

    .legal-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }

    .legal-table th,
    .legal-table td {
        padding: 12px;
        text-align: left;
        border: 1px solid #ddd;
    }

    .legal-table th {
        background: #f8f9fa;
        font-weight: 600;
        color: #2c3e50;
    }

    .legal-table td {
        color: #555;
    }

    .legal-highlight {
        background: #fff3e0;
        padding: 2px 5px;
        border-radius: 3px;
    }

    @media (max-width: 768px) {
        .legal-header h1 {
            font-size: 26px;
        }
        
        .legal-content {
            padding: 25px;
        }
        
        .legal-section h2 {
            font-size: 20px;
        }
        
        .legal-section h3 {
            font-size: 16px;
        }
        
        .legal-section p,
        .legal-section li {
            font-size: 14px;
        }
        
        .legal-table {
            display: block;
            overflow-x: auto;
        }
    }
