.privacy-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/privacy-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    color: #000000;
    text-align: center;
}

.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem;
}

.privacy-container {
    background-color: #000000;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.hero-content h1 {
    color: #00A19B;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.hero-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #ffffff;
    text-align: left;
}

.privacy-section h2 {
    color: #00A19B;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #00A19B;
}

.privacy-section h3 {
    color: #00A19B;
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-section ul, .privacy-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.privacy-section strong {
    color: #00A19B;
}

.privacy-section a {
    color: #00A19B;
    text-decoration: underline;
    transition: color 0.3s;
}

.privacy-section a:hover {
    color: #1a5a7a;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 4rem 1rem;
    }
    
    .privacy-content {
        padding: 2rem 1rem;
    }
    
    .privacy-container {
        padding: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .privacy-section h3 {
        font-size: 1.3rem;
    }
}