/* Privacy Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, rgba(0,139,139,0.95), rgba(75,0,130,0.95)),
                url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0 150px;
    position: relative;
    text-align: center;
}

.privacy-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeIn 1s ease-out;
}

.privacy-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.wave-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

/* Privacy Content */
.privacy-content {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.policy-section {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 20px;
}

.policy-section h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin: 25px 0 15px;
}

.policy-section p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.policy-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text-color);
}

.policy-section ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.contact-details {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-top: 30px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2.5em;
    }

    .policy-section {
        padding: 30px;
    }

    .policy-section h2 {
        font-size: 1.6em;
    }

    .policy-section h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 2em;
    }

    .policy-section {
        padding: 20px;
    }

    .policy-section h2 {
        font-size: 1.4em;
    }

    .policy-section h3 {
        font-size: 1.2em;
    }
} 