.policy-container {
    padding: 120px 0 60px;
    min-height: calc(100vh - 200px);
}

.policy-container h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    -webkit-text-stroke: 2px black;
}

.policy-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-text-stroke: 1.5px black;
    text-stroke: 1.5px black;
}

.policy-content {
    color: #ccc;
    line-height: 1.8;
}

.policy-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
}

.policy-content ul li:hover::before {
    background: #45a049;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* Hover Effects */
.policy-section {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .policy-container h1 {
        font-size: 2.2rem;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .policy-container {
        padding: 100px 20px 40px;
    }

    .policy-container h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 20px;
    }

    .policy-section h2 {
        font-size: 1.4rem;
    }

    .policy-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policy-container h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-content h3 {
        font-size: 1.1rem;
    }

    .policy-content {
        font-size: 0.9rem;
    }

    .policy-content ul {
        padding-left: 10px;
    }

    .policy-content ul li {
        padding-left: 20px;
    }
} 