.privacy-policy-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-policy-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffffff;
}

.last-updated {
    text-align: center;
    color: #cccccc;
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.08);
}

.policy-section h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
}

.policy-section ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: #f0f0f0;
}

.policy-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Policy Navigation */
.policy-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.policy-tab {
    padding: 1rem 2rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.policy-tab:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.policy-tab.active {
    background-color: #068051;
    box-shadow: 0 4px 12px rgba(7, 43, 82, 0.3);
}

/* Policy Content */
.policy-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.policy-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-nav {
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }

    .policy-tab {
        width: 100%;
        padding: 0.8rem;
        font-size: 1rem;
    }

    .privacy-policy-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .privacy-policy-container h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section {
        padding: 1rem;
    }
} 