/* Privacy Policy Styles */
.privacy-hero {
    background: #1e4b9a;
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    background-image: linear-gradient(135deg, #1e4b9a 0%, #0d2f6d 100%);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.privacy-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.privacy-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    position: relative;
    line-height: 1.6;
}

.privacy-content {
    padding-bottom: 80px;
}

.privacy-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: #003366;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
    position: relative;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #1e4b9a;
}

.privacy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.privacy-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.privacy-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #1e4b9a;
    font-size: 0.9rem;
}

.last-updated {
    text-align: center;
    color: #888;
    margin-top: 50px;
    font-style: italic;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 60px 0;
    }

    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-container {
        padding: 30px 20px;
    }
}