/* Dodatkowe style dla sekcji HERO */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(255, 62, 121, 0.1), rgba(255, 62, 121, 0.15));
    color: #333;
    position: relative;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
    text-align: left;
    margin: 0;
    max-width: 100%;
}

.hero h1, .hero h2 {
    margin-bottom: 20px;
    color: #333;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.hero h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: #555;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    color: #555;
}

.hero-badge {
    display: inline-block;
    background-color: #ff3e79;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-feature {
    margin-right: 30px;
    margin-bottom: 15px;
}

.hero-feature-number {
    font-size: 36px;
    font-weight: 700;
    color: #ff3e79;
    margin-bottom: 5px;
}

.hero-feature-text {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.hero-cta .btn {
    background-color: #ff3e79;
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(255, 62, 121, 0.3);
    transition: all 0.3s ease;
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 62, 121, 0.4);
    background-color: #e62e69;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-flex;
    color: #666;
}

.hero-guarantee img {
    width: 30px;
    margin-right: 10px;
}

.hero-guarantee span {
    font-weight: 600;
}

.hero-video {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporcje 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-container {
        flex-direction: column-reverse;
    }
    
    .hero-content {
        padding-right: 0;
        padding-top: 30px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-video {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-feature {
        margin: 0 15px 15px;
    }
}
