.policy-container {
    margin-top: 40px;
    padding-bottom: 80px;
    background-color: #ffffff;
}

.policy-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.policy-content h2 {
    text-align: center;
    margin-bottom: 40px;
}

.policy-content h4 {
    margin-top: 35px;
    margin-bottom: 10px;
}

.policy-content p {
    line-height: 1.7;
    font-size: 16px;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    line-height: 1.7;
    font-size: 16px;
}

.policy-content h4 {
    margin-top: 35px;
    margin-bottom: 10px;
    color: #DE710C;
    font-weight: 700;
}

.policy-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px; 
}

.policy-nav a {
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #808080; 
    color: #ffffff;
    font-family: 'Geist', sans-serif;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.policy-nav a:hover {
    background-color: #4a4a4a; 
    color: #ffffff;
}

.policy-section {
    margin-top: 60px;
}

.policy-section:first-of-type {
    margin-top: 0;
}

.section-divider {
    border: 0;
    border-top: 2px solid #eeeeee;
    margin-bottom: 40px;
    opacity: 1;
}

.policy-section:first-of-type .section-divider {
    display: none;
}

@media (max-width: 768px) {
    .policy-container {
        margin-top: 20px;
        padding-bottom: 50px;
    }

    .policy-content {
        padding: 25px;
    }

    .policy-content p,
    .policy-content li {
        font-size: 14px;
    }

    .policy-nav {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .policy-nav a {
        width: 100%;
        text-align: center;
    }
}