/* Policy Pages Common Styles */
.policy-page {
    padding: 120px 0 60px;
}

.policy-page h1 {
    margin-bottom: 2rem;
    color: var(--dark-text);
    position: relative;
}

.policy-page h1:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-accent);
    margin: 1rem 0;
    border-radius: 2px;
}

.policy-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.policy-content h2 {
    color: var(--secondary-accent);
    margin-top: 2rem;
    font-size: 1.5rem;
}

.policy-content h3 {
    color: var(--dark-text);
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.policy-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
}

.policy-content address {
    font-style: normal;
    margin-top: 1rem;
}

/* Custom styles for legal info */
.legal-info {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    list-style: none !important;
}

.legal-info li {
    margin-bottom: 0.5rem;
    padding-left: 0 !important;
}

/* Cookies table styles */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.cookies-table th {
    background-color: var(--light-bg);
    font-weight: 600;
}

.cookies-table tr:nth-child(even) {
    background-color: #f9f9f9;
} 