.policy-section {
    padding: 4rem 0;
}

.policy-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.policy-content h2 {
    margin-top: 2rem;
    color: var(--accent-dark);
    border-bottom: 2px solid var(--accent-green);
    padding-bottom: 0.5rem;
}

.policy-content h3 {
    margin-top: 1.5rem;
    color: var(--text-color);
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    list-style-type: none;
}

.policy-content ul li {
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.policy-content ul li::before {
    content: '•';
    color: var(--accent-green);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.cookie-table th, .cookie-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.cookie-table th {
    background-color: var(--accent-green);
    color: white;
}

.cookie-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 0;
    }
    
    .policy-content {
        padding: 1rem;
    }
} 