.privacy-hero {
    background: linear-gradient(135deg, #38A6DE 0%, #2c8cbd 100%);
    color: white;
    padding: 90px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.privacy-hero .container {
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.privacy-hero h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.privacy-hero p {
    font-size: 1.3rem;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
}

.privacy-content {
    padding: 60px 0;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-section h2 {
    color: #343434;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f5ff;
    font-size: 1.8rem;
}

.privacy-section h3 {
    color: #38A6DE;
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.privacy-section p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-section li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    /*.container {
        flex-direction: column;
        gap: 20px;
    }*/
    
    .privacy-hero {
        padding: 70px 0 50px;
    }
    
    .privacy-hero h1 {
        font-size: 2.2rem;
    }
    
    .privacy-hero p {
        font-size: 1.1rem;
    }
    
    .privacy-section {
        padding: 25px;
    }
}