
/* Styl info - podobny do privacy w ciemnej wersji */

.hero-banner {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

.hero-banner .hero-container {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
    animation: fadeInHero 1.5s ease-in-out;
}

.hero-banner h1 {
    font-size: 64px;
    margin-bottom: 20px;
}

.hero-banner p {
    font-size: 24px;
    margin-bottom: 30px;
}

.info-content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.7;
    border-radius: 10px;
}

.info-content h2, .info-content h3 {
    color: #5bc0de;
    margin-top: 30px;
    margin-bottom: 15px;
}

.info-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.info-content li {
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.info-content li:hover {
    background-color: #1e1e1e;
    border-radius: 5px;
    padding-left: 5px;
}

.info-content a {
    color: #5bc0de;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #00aaff;
    text-decoration: underline;
}

.cta-section-info {
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.cta-section-info a {
    background: white;
    color: #007bff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s, color 0.3s;
}

.cta-section-info a:hover {
    background: #f0f0f0;
    color: #0056b3;
}

.info-infographic {
    text-align: center;
    margin: 50px 0;
}

.infographic-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1e1e1e;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.infographic-container:hover {
    transform: scale(1.05);
}

.infographic-icon {
    font-size: 50px;
    color: #5bc0de;
    margin-bottom: 15px;
}

@keyframes fadeInHero {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-banner h1 { font-size: 40px; }
    .hero-banner p { font-size: 18px; }
}


/* Aktualizacja koloru tekstu infografiki */

/* Ustawienie jasnego koloru tekstu w infografice ciasteczek */
.info-infographic p {
    color: #ffffff !important;
}
