html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body, html, .privacy-policy {
    -webkit-user-select: none;  
    -moz-user-select: none;     
    -ms-user-select: none;      
    user-select: none;          
}

.policy-container {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.policy-section {
    margin-bottom: 40px;
}

.main-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    position: relative;
}

.policy-title .bold {
    font-weight: bold;
}

.policy-title {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    position: relative;
}

.policy-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #c9a04c; 
    margin-top: 6px;
    border-radius: 4px;
}

.policy-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-text strong {
    font-weight: 700;
}

.policy-list {
    padding-left: 20px;
    margin-top: 10px;
}

.policy-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .policy-title {
        font-size: 1.6rem;
    }

    .policy-container {
        margin: 60px auto;
    }
}
