/* Privacy Policy Styles */
.policy-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-color), white);
}

.policy-hero h1 {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.policy-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.policy-section {
    margin-bottom: 4rem;
    animation: fadeIn 0.5s ease-out;
}

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

.policy-section h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.policy-section h2::before {
    content: "";
    width: 4px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 2px;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.policy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.policy-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.last-updated {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-info {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.contact-button:hover {
    background: var(--secondary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .policy-hero {
        padding: 4rem 1rem 2rem;
    }

    .policy-hero h1 {
        font-size: 2.2rem;
    }

    .policy-hero p {
        font-size: 1.1rem;
    }

    .policy-container {
        padding: 2rem 1rem;
    }

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

    .policy-section p {
        font-size: 1rem;
    }

    .policy-card {
        padding: 1.5rem;
    }
} 