.policy-container {
    width: 95%;
    max-width: 1200px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
h3 {
    background-color: #383838;
    color: white;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1.2em;
    text-transform: uppercase;
}

h4 {
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Notice Row */
.notice-row {
    background-color: #ed591e;
    color: white;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
    border-radius: 5px;
}

/* Tables */
.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.policy-table th,
.policy-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.policy-table th {
    background-color: #ed591e;
    color: white;
    font-weight: bold;
}

.policy-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.policy-table tr:hover {
    background-color: #ffe5d0;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .policy-table,
    .policy-table thead,
    .policy-table tbody,
    .policy-table tr,
    .policy-table th,
    .policy-table td {
        display: block;
    }

    .policy-table tr {
        margin-bottom: 15px;
    }

    .policy-table td {
        background-color: #ffe5d0;
        text-align: left;
        border: none;
        padding: 15px;
    }

    .policy-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #383838;
        display: block;
    }

    .policy-table th {
        display: none;
    }

    .notice-row {
        font-size: 1em;
        text-align: left;
        padding: 15px;
    }
}
