body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.policy-header {
    background: linear-gradient(135deg, #ff6b9d, #ff3e6c);
    color: white;
    padding: 2rem 0;
    position: sticky;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.policy-header p {
    font-size: 1.2rem;
    margin: 0;
}

.policy-page .container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.policy-content section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-content section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
    font-size: 1.8rem;
    color: #ff3e6c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.policy-content ul {
    list-style: none;
    padding: 0;
}

.policy-content ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-content ul li i {
    color: #ff3e6c;
}

.policy-footer {
    background: #2a2a2a;
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.policy-footer a {
    color: #ff6b9d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-footer a:hover {
    color: #ff3e6c;
}