/* --- Shared Styles for Policy Pages (Terms, Privacy, Shipping) --- */
.policy-page {
    padding: 2rem 1rem 5rem;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 0.4s ease-out;
}

.policy-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-hero .material-icons {
    font-size: 3rem;
    color: var(--primary-color);
    background: #eef2ff;
    padding: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.15);
}

.policy-hero h1 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.policy-hero p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.policy-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.policy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-section h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-section h2 .material-icons {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.policy-section p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.policy-section ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.policy-section ul li::before {
    content: 'check_circle';
    font-family: 'Material Icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Last updated text */
.policy-updated {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .policy-card {
        padding: 1.5rem;
    }
    .policy-hero h1 {
        font-size: 1.8rem;
    }
    .policy-section h2 {
        font-size: 1.25rem;
    }
}