/* Legal Pages Content Styling */

.ph-legal-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.ph-legal-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ph-legal-title {
    font-size: 28px;
    font-weight: 700;
    color: #232323;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0b71b9;
}

.ph-legal-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-top: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.ph-legal-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 15px;
    text-align: justify;
    letter-spacing: 1px;
}

.ph-legal-list {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.ph-legal-item {
    font-size: 15px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    letter-spacing: 1px;
}

.ph-legal-item:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0b71b9;
    font-weight: bold;
}

.ph-legal-highlight {
    background-color: #fff3cd;
    padding: 15px 20px;
    border-left: 4px solid #0b71b9;
    margin: 20px 0;
    border-radius: 4px;
}

.ph-legal-highlight-text {
    font-size: 15px;
    color: #333333;
    font-weight: 500;
    letter-spacing: 1px;
}

.ph-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.ph-legal-table thead {
    background-color: #0b71b9;
}

.ph-legal-table th {
    color: #ffffff;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border: 1px solid #ddd;
}

.ph-legal-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    color: #666666;
    font-size: 14px;
}

.ph-legal-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.ph-legal-table tbody tr:hover {
    background-color: #f0f0f0;
}

.ph-legal-contact {
    background-color: #f0f0f0;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.ph-legal-contact-title {
    font-size: 16px;
    font-weight: 600;
    color: #232323;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.ph-legal-contact-info {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.ph-legal-contact-link {
    color: #0b71b9;
    text-decoration: none;
    font-weight: 500;
}

.ph-legal-contact-link:hover {
    color: #E55555;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ph-legal-content {
        padding: 25px;
    }

    .ph-legal-title {
        font-size: 22px;
    }

    .ph-legal-subtitle {
        font-size: 16px;
    }

    .ph-legal-text {
        font-size: 13px;
    }

    .ph-legal-section {
        padding: 40px 0;
    }

    .ph-legal-table th,
    .ph-legal-table td {
        padding: 8px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ph-legal-content {
        padding: 15px;
    }

    .ph-legal-title {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .ph-legal-subtitle {
        font-size: 14px;
    }
}
