.policy-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-section h2 {
    color: var(--heading-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section h2 i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.policy-section p,
.policy-section ul {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-section ul {
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    position: relative;
}

.policy-section li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #f39c12;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.highlight-box h4 {
    color: #f39c12;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.timeline-number {
    background: var(--accent-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.policy-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .policy-container {
        padding: 1rem;
    }

    .policy-section {
        padding: 1rem;
    }
}